Chris Morgan
›
Git
›
anymap
› blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
commit
grep
author
committer
pickaxe
?
search:
re
Flatten anymap::any out of existence
[anymap]
/
src
/
lib.rs
diff --git
a/src/lib.rs
b/src/lib.rs
index c9e027633b2e37fe06f828d1189ec20285757578..3f656e3084d693493cb7f0d86ff9d4e313f0aea2 100644
(file)
--- a/
src/lib.rs
+++ b/
src/lib.rs
@@
-6,7
+6,8
@@
use std::any::TypeId;
use std::marker::PhantomData;
use raw::RawMap;
use std::marker::PhantomData;
use raw::RawMap;
-use any::{UncheckedAnyExt, IntoBox, Any};
+use any::{UncheckedAnyExt, IntoBox};
+pub use any::{Any, CloneAny};
macro_rules! impl_common_methods {
(
macro_rules! impl_common_methods {
(
@@
-85,7
+86,7
@@
macro_rules! impl_common_methods {
}
}
}
}
-
pub
mod any;
+mod any;
pub mod raw;
/// A collection containing zero or one values for any given type and allowing convenient,
pub mod raw;
/// A collection containing zero or one values for any given type and allowing convenient,