( arb: fc.Arbitrary<A>, constraints?: fc.ArrayConstraints )
| 16 | import * as Take from "effect/Take" |
| 17 | |
| 18 | const chunkArb = <A>( |
| 19 | arb: fc.Arbitrary<A>, |
| 20 | constraints?: fc.ArrayConstraints |
| 21 | ): fc.Arbitrary<Chunk.Chunk<A>> => fc.array(arb, constraints).map(Chunk.unsafeFromArray) |
| 22 | |
| 23 | const OrderByKey: Order.Order<readonly [number, number]> = pipe( |
| 24 | Number.Order, |
no test coverage detected