Option overview
Added in v0.0.2
Table of contents
utils
getNone
Returns an Arbitrary
that yelds only none
s
Signature
export declare function getNone<A>(): fc.Arbitrary<Option<A>>
Added in v0.0.2
getOption
Returns an Arbitrary
that yelds both none
s and some
s
Signature
export declare function getOption<A>(arb: fc.Arbitrary<A>): fc.Arbitrary<Option<A>>
Added in v0.0.2
getSome
Returns an Arbitrary
that yelds only some
s
Signature
export declare function getSome<A>(arb: fc.Arbitrary<A>): fc.Arbitrary<Option<A>>
Added in v0.0.2