Skip to content

Commit b061df8

Browse files
committed
feat: add StateRef::is_set() and StateRef::is_unset() for convenience().
Many users of attributes will just need to know that.
1 parent 2a6015b commit b061df8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

gix-attributes/src/state.rs

+10
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@ impl StateRef<'_> {
6969
pub fn is_unspecified(&self) -> bool {
7070
matches!(self, StateRef::Unspecified)
7171
}
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+
}
7282
}
7383

7484
/// Initialization

0 commit comments

Comments
 (0)