We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
StateRef::is_set()
StateRef::is_unset()
1 parent 2a6015b commit b061df8Copy full SHA for b061df8
gix-attributes/src/state.rs
@@ -69,6 +69,16 @@ impl StateRef<'_> {
69
pub fn is_unspecified(&self) -> bool {
70
matches!(self, StateRef::Unspecified)
71
}
72
+
73
+ /// Return `true` if the associated attribute was set with `attr`. Note that this will also be `true` if a value is assigned.
74
+ pub fn is_set(&self) -> bool {
75
+ matches!(self, StateRef::Set | StateRef::Value(_))
76
+ }
77
78
+ /// Return `true` if the associated attribute was set with `-attr` to specifically remove it.
79
+ pub fn is_unset(&self) -> bool {
80
+ matches!(self, StateRef::Unset)
81
82
83
84
/// Initialization
0 commit comments