mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
The shebang example `#!/usr/bin/env mlr -s` does not work on Linux
because env(1) does not accept arguments to the interpreter; use
`#!/usr/bin/env -S mlr -s` instead.
`contains` and `index` previously stringified their inputs silently,
so `contains([1,2], $foo)` would match against the literal string
`[1, 2]` and produce surprising results. Both now return a type-error
when either argument is an array or map; help text points users at
`any(arr, func(e){return e == x})` for membership tests.
|
||
|---|---|---|
| .. | ||
| arithmetic.go | ||
| arithmetic_test.go | ||
| base.go | ||
| bits.go | ||
| bits_test.go | ||
| booleans.go | ||
| cmp.go | ||
| collections.go | ||
| collections_test.go | ||
| datetime.go | ||
| hashing.go | ||
| hashing_test.go | ||
| mathlib.go | ||
| percentiles.go | ||
| random.go | ||
| regex.go | ||
| relative_time.go | ||
| stats.go | ||
| stats_test.go | ||
| strings.go | ||
| system.go | ||
| types.go | ||