Function or value | Description |
|
|
|
|
Full Usage:
appValidation combine e1' e2'
Parameters:
'err -> 'err -> 'err
e1' : Validation<'err, 'a>
e2' : Validation<'err, 'a>
Returns: Validation<'err, 'a>
|
![]() ![]() ![]() ![]() ![]() ![]() Takes two Validations and returns the first Success. If both are Failures it returns both Failures combined with the supplied function.
|
Full Usage:
apply f x
Parameters:
Validation<^Error, ('T -> 'U)>
x : Validation<^Error, 'T>
Returns: Validation<^Error, 'U>
Modifiers: inline Type parameters: ^Error, 'T, 'U |
![]() ![]() ![]() ![]() ![]() ![]()
Applies the wrapped value to the wrapped function when both are Success and returns a wrapped result or the Failure(s).
The function wrapped in a Success or a Failure.
The value wrapped in a Success or a Failure.
|
Full Usage:
bifoldBack f g source state
Parameters:
'Error -> 'State -> 'State
g : 'T -> 'State -> 'State
source : Validation<'Error, 'T>
state : 'State
Returns: 'State
|
|
Full Usage:
bimap f g _arg1
Parameters:
'T1 -> 'U1
g : 'T2 -> 'U2
_arg1 : Validation<'T1, 'T2>
Returns: Validation<'U1, 'U2>
|
|
Full Usage:
bind f x
Parameters:
'T -> Validation<'Error, 'U>
x : Validation<'Error, 'T>
Returns: Validation<'Error, 'U>
|
![]() ![]() ![]() ![]() ![]() ![]() Binds through a Validation, which is useful for composing Validations sequentially. Note that despite having a bind function of the correct type, Validation is not a monad. The reason is, this bind does not accumulate errors, so it does not agree with the Applicative instance. There is nothing wrong with using this function, it just does not make a valid Monad instance.
|
Full Usage:
bisequence source
Parameters:
Validation<^Functor<'Error>, ^Functor<'T>>
Returns: ^Functor
Modifiers: inline |
|
Full Usage:
bitraverse f g source
Parameters:
'Error1 -> ^Functor<'Error2>
g : 'T1 -> ^Functor<'T2>
source : Validation<'Error1, 'T1>
Returns: ^Functor
Modifiers: inline Type parameters: 'Error1, ^Functor<'Error2>, ^Functor<Validation<'Error2,'T2>>, ^Functor<'T2>, 'T2, 'Error2, 'T1 |
|
Full Usage:
defaultValue value source
Parameters:
'T
source : Validation<'Error, 'T>
Returns: 'T
|
|
Full Usage:
defaultWith compensation source
Parameters:
'Error -> 'T
source : Validation<'Error, 'T>
Returns: 'T
|
|
Full Usage:
either fSuccess fFailure source
Parameters:
'T -> 'U
-
Function to be applied to source, if it contains a Success value.
fFailure : 'Error -> 'U
-
Function to be applied to source, if it contains a Failure value.
source : Validation<'Error, 'T>
-
The source value, containing a Success or a Failure.
Returns: 'U
The result of applying either functions.
|
|
Full Usage:
foldBack folder source state
Parameters:
'T -> 'State -> 'State
source : Validation<'Error, 'T>
state : 'State
Returns: 'State
Modifiers: inline Type parameters: 'T, 'State, 'Error |
|
Full Usage:
isoValidationResult x
Parameters:
^a
Returns: ^b
Modifiers: inline |
|
Full Usage:
liftChoice f
Parameters:
'b -> 'Semigroup
Returns: Choice<'b, 'T> -> Validation<'Semigroup, 'T>
|
![]() ![]() ![]() ![]() ![]() ![]() Converting a 'Choice' to a 'Validation' when the 'Choice2Of2' of the 'Choice' needs to be lifted into a 'Semigroup'.
|
Full Usage:
liftResult f _arg1
Parameters:
'Error -> 'Semigroup
_arg1 : Result<'T, 'Error>
Returns: Validation<'Semigroup, 'T>
|
![]() ![]() ![]() ![]() ![]() ![]() Converts a 'Result' to a 'Validation' when the 'Error' of the 'Result' needs to be lifted into a 'Semigroup'.
|
Full Usage:
map f source
Parameters:
'T -> 'U
source : Validation<'Error, 'T>
Returns: Validation<'Error, 'U>
|
|
Full Usage:
map2 f x y
Parameters:
'T -> 'U -> 'V
x : Validation<^Error, 'T>
y : Validation<^Error, 'U>
Returns: Validation<^Error, 'V>
Modifiers: inline Type parameters: 'T, 'U, 'V, ^Error |
|
Full Usage:
map3 f x y z
Parameters:
'T -> 'U -> 'V -> 'W
x : Validation<^Error, 'T>
y : Validation<^Error, 'U>
z : Validation<^Error, 'V>
Returns: Validation<^Error, 'W>
Modifiers: inline Type parameters: 'T, 'U, 'V, 'W, ^Error |
|
|
|
|
|
Full Usage:
partition source
Parameters:
Validation<'Error, 'T> list
Returns: 'T list * 'Error list
A tuple with both resulting lists, Success are in the first list.
|
![]() ![]() ![]() ![]() ![]() ![]() Creates two lists by classifying the values depending on whether they were wrapped with Success or Failure.
|
|
![]() ![]() ![]() ![]() ![]() ![]()
Creates a safe version of the supplied function, which returns a Validation
|
Full Usage:
sequence source
Parameters:
Validation<'Error, ^Functor<'T>>
Returns: ^Functor
Modifiers: inline |
|
|
|
|
|
Full Usage:
traverse f source
Parameters:
'T -> ^Functor<'U>
source : Validation<'Error, 'T>
Returns: ^Functor
Modifiers: inline Type parameters: 'T, ^Functor<'U>, ^Functor<Validation<'Error,'U>>, 'U, 'Error |
|
Full Usage:
validationNel x
Parameters:
Result<'a, 'e>
Returns: Validation<NonEmptyList<'e>, 'a>
|
![]() ![]() ![]() ![]() ![]() ![]() validationNel : Result<'a,'e> -> Validation (NonEmptyList<'e>) a This is 'liftError' specialized to 'NonEmptyList', since they are a common semigroup to use.
|