trumae

Results 6 comments of trumae

It's like the clojure slurp (https://clojuredocs.org/clojure.core/slurp)? In that case, the name open is the better choice??

In the lisp way the right is: (zip '(1 2 3) '(4 5 6) '(7 8 9)) ;;=> ((1 4 7) (2 5 8) (3 6 9)) (zip '(1 2...

Another solution is always use an function as list constructor when an list is needed. Like: (zip (list 1 2 3) (list 4 5 6) (list 7 8 9)) ;;=>...

So it will be impossible to declare one list of functions or lambdas?

That solution is good. But the (zip (array 1 2) (array 3 4)) is different of avelino's examples. My problem is with the solution using inference to decide between data...

Promoted fields act like ordinary fields of a struct except that they cannot be used as field names in composite literals of the struct. Promoted fields are a problem to...