You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IValidationFunctions has many functions that implicitly add a "required" constraint from their type.
For example: Float is string Formlet -> float Formlet, but should be string Formlet -> float option Formlet since the user might not submit a value.
There should also be a function 'a option Formlet -> 'a Formlet validating a required value.
In short, I need to decouple requiredness validation,
The text was updated successfully, but these errors were encountered:
IValidationFunctions has many functions that implicitly add a "required" constraint from their type.
For example: Float is
string Formlet -> float Formlet
, but should bestring Formlet -> float option Formlet
since the user might not submit a value.There should also be a function
'a option Formlet -> 'a Formlet
validating a required value.In short, I need to decouple requiredness validation,
The text was updated successfully, but these errors were encountered: