summaryrefslogtreecommitdiffstats
path: root/src/ops/bool.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ops/bool.rs')
-rw-r--r--src/ops/bool.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ops/bool.rs b/src/ops/bool.rs
index 23c662b..fcf8e7f 100644
--- a/src/ops/bool.rs
+++ b/src/ops/bool.rs
@@ -16,19 +16,15 @@ use filter::Filter;
pub struct Bool(bool);
impl Bool {
-
pub fn new(b: bool) -> Bool {
Bool(b)
}
-
}
impl From<bool> for Bool {
-
fn from(b: bool) -> Bool {
Bool::new(b)
}
-
}
impl_operators!(Bool, self e { self.0 }, );