123456789101112131415161718192021222324252627282930313233 |
- /* syntax version 1 */
- $st_many = <|a: "one", b: "two", c: "three", d: "four"|>;
- $st_single = <|a: "zero"|>;
- $st_empty = <||>;
- $tup = AsTuple("first", "second");
- $concat = ($item, $state) -> { return $state || $item; };
- $start = ($value) -> { return "(" || $value || ")"; };
- SELECT
- StaticFold($st_many, "->", $concat),
- StaticFold($st_single, "->", $concat),
- CAST(StaticFold($st_empty, "->", $concat) AS Optional<String>),
- StaticFold($tup, "->", $concat);
- SELECT
- StaticFold1($st_many, $start, $concat),
- StaticFold1($st_single, $start, $concat),
- CAST(StaticFold1($st_empty, $start, $concat) AS Optional<String>),
- StaticFold1($tup, $start, $concat);
- --WithOptionalArgs lambda test
- $puk = ($row_struct) -> {
- RETURN StaticFold(
- $row_struct,
- 0,
- ($item, $sum?) -> {
- RETURN $sum + IF($item IS NULL, 0, 1)
- }
- )
- };
- SELECT $puk(Unwrap(CAST(<|one:"8912", two:42|> AS Struct<one: Int64, two:Int64>)));
|