Dániel Kántor
Dániel Kántor
``` map (fn(): $ * 2) ``` should be equivalent to ``` map $ => $ * 2 ``` Inside the parentheses it should be possible to use projections in...
``` $ { users[1, 2] { name } } ```
``` $ { foo { baz[] { bar } } } ```
This feature would consist in 3 different parts: - Add a syntax for type casting (it should actually be a special way to use functions that take a value and...
emuto could be used as a GraphQL-like query language to retrieve data from the backend. To determine which file/database table/API should be queried, one possible way could be creating a...
If there's only one item in a pipe, that should be handled as a value Otherwise a type error should be thrown (there's no way that a generator could be...
The following example: ``` map ($ => $ * 2) | map ($ => $ - 1) | @slurp | length ``` Should be roughly equivalent to ``` slurp (map...