 | SmoothenerTValueIsLess Method |
Indicates if value A is less than value B.
Namespace:
Slash.Unity.DataBind.Foundation.Providers.Smootheners
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxprotected abstract bool IsLess(
TValue valueA,
TValue valueB
)
Protected MustOverride Function IsLess (
valueA As TValue,
valueB As TValue
) As Boolean
protected:
virtual bool IsLess(
TValue valueA,
TValue valueB
) abstract
abstract IsLess :
valueA : 'TValue *
valueB : 'TValue -> bool
Parameters
- valueA
- Type: TValue
First value. - valueB
- Type: TValue
Second value.
Return Value
Type:
BooleanTrue if first value is less than second value; otherwise, false.
See Also