iota
iota copied to clipboard
Any order operator
Would be of interest to have something like :=~ for comparing vectors where the order doesn't matter? So [:a :b :c] :=~ [:b :a :c]?
As an alternative, you could accomplish this by calling set on the result,
For example: [:path set] := #{:b :a :c}.
Yeah, I got it working with two assertions :> and :<, your solution is more elegant. But in the end I moved to testit. The syntax was more formatter friendly.