You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Languages such as Elm have special syntax that simplifies expressions such as function(x) x.y into just .y; adding support for this shorthand would improve the legibility of Jsonnet code by removing repetitive boilerplate, e.g. this code:
Languages such as Elm have special syntax that simplifies expressions such as
function(x) x.y
into just.y
; adding support for this shorthand would improve the legibility of Jsonnet code by removing repetitive boilerplate, e.g. this code:could instead be written as
A function that takes a single argument and just looks at a field on it is very common, e.g.
std.filter(.isPublic, files) std.flatMap(.members, groups)
The text was updated successfully, but these errors were encountered: