AppendedValidations

public struct AppendedValidations<T, V1, V2>: Validation where V1: Validation, V2: Validation, V1.Supported == T, V2.Supported == T

A combination of two validations.

This validation is used for things such as numeric operations where Failable types with different validations are used.

The validations used must have the same Supported type.