Skip to content

Commit

Permalink
Add NSMutableDictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
zleytus committed Aug 29, 2022
1 parent 9ab6bf3 commit 2a5d64b
Show file tree
Hide file tree
Showing 4 changed files with 407 additions and 5 deletions.
3 changes: 3 additions & 0 deletions objc2/src/foundation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ pub use self::geometry::{CGFloat, NSPoint, NSRect, NSSize};
pub use self::mutable_array::NSMutableArray;
pub use self::mutable_attributed_string::NSMutableAttributedString;
pub use self::mutable_data::NSMutableData;
pub use self::mutable_dictionary::NSMutableDictionary;
pub use self::mutable_set::NSMutableSet;
pub use self::mutable_string::NSMutableString;
pub use self::number::NSNumber;
Expand Down Expand Up @@ -106,6 +107,7 @@ mod geometry;
mod mutable_array;
mod mutable_attributed_string;
mod mutable_data;
mod mutable_dictionary;
mod mutable_set;
mod mutable_string;
mod number;
Expand Down Expand Up @@ -180,6 +182,7 @@ mod tests {
assert_auto_traits::<NSMutableArray<NSString, Shared>>();
assert_auto_traits::<NSMutableAttributedString>();
assert_auto_traits::<NSMutableData>();
assert_auto_traits::<NSMutableDictionary<NSString, NSString>>();
assert_auto_traits::<NSMutableSet<NSString, Shared>>();
assert_auto_traits::<NSMutableString>();
assert_auto_traits::<NSNumber>();
Expand Down
Loading

0 comments on commit 2a5d64b

Please sign in to comment.