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