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
An idea from @SplittyDev was implementing pipes. similar to F# piping. Useful for method chaining in a functional way, and creating partially applied functions.
fn toInt str -> i128 // transforms from srt to i128
"42" |> toInt
// and the reverse would be
toInt <| "42"
// equivalent to
toInt "42"
That was example syntax, the use case is not the most appliable, but the syntax is what it shows.
The text was updated successfully, but these errors were encountered:
An idea from @SplittyDev was implementing pipes. similar to F# piping. Useful for method chaining in a functional way, and creating partially applied functions.
That was example syntax, the use case is not the most appliable, but the syntax is what it shows.
The text was updated successfully, but these errors were encountered: