Beispiel #1
0
 public bool IsSameOrAfter(LayerLifeState state) => _value >= state._value;
Beispiel #2
0
 public bool IsAfter(LayerLifeState state) => _value > state._value;
Beispiel #3
0
 public bool IsBefore(LayerLifeState state) => _value < state._value;
Beispiel #4
0
 public bool IsSameOrBefore(LayerLifeState state) => _value <= state._value;
Beispiel #5
0
 public bool Is(LayerLifeState state) => _value == state._value;