Take a look at this example:
we have a filter, take, skip and update. the take function wont run when you call take(), neither skip() or filter.
actually all the operations above run together. these operators are fused and actually compiled. thats why ZenQL is fast and indeed a query language for Go which is used by many!

Top comments (1)
interesting! I never of the language before