Traverses deeply inside the tree, returning the first count values. This is essentially a deep version of take or a constrained version of deepValues.
$ cat greetings.yaml
english:
a: Hello, a.
b: Hello, b.
c: Hello, c.
french:
a: Bonjour, a.
b: Bonjour, b.
c: Bonjour, c.
spanish:
a: Hola, a.
b: Hola, b.
c: Hola, c.
$ ori deepTake greetings.yaml, 5
- Hello, a.
- Hello, b.
- Hello, c.
- Bonjour, a.
- Bonjour, b.