| PropExtensionsAndTLeftTestable, TRightTestable Method |
Wrapper method around FsCheck's .&. operator that succeeds if both properties succeed.
Namespace: FsCheckUtilsAssembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntaxpublic static Gen<Rose<Result>> And<TLeftTestable, TRightTestable>(
TLeftTestable l,
TRightTestable r
)
Public Shared Function And(Of TLeftTestable, TRightTestable) (
l As TLeftTestable,
r As TRightTestable
) As Gen(Of Rose(Of Result))
public:
generic<typename TLeftTestable, typename TRightTestable>
static Gen<Rose<Result^>^>^ And(
TLeftTestable l,
TRightTestable r
)
static member And :
l : 'TLeftTestable *
r : 'TRightTestable -> Gen<Rose<Result>>
Parameters
- l
- Type: TLeftTestable
The left property. - r
- Type: TRightTestable
The right property.
Type Parameters
- TLeftTestable
- Type of the left property.
- TRightTestable
- Type of the right property.
Return Value
Type:
GenRoseResultA property that succeeds if both properties succeed.
See Also