Karan Jain
Karan Jain
Can we make `EnumSet` work on enums with fields where the fields `impl EnumSetType`? E.g. ``` #[derive(EnumSetType)] enum MyEnum { A B(MyEnumInner) } #[derive(EnumSetType)] enum MyEnumInner { C D }...
Adds the following methods - `checked_remove`: checks if the element at a certain index can be removed from the vector, then removes it, shifting all elements after it to the...
Can we add a remove method on NonEmpty that can remove an element at a certain index (if it exists)? Same request for a swap_remove method