Derive PartialOrd and Ord for Variable. r=jsantell

This commit is contained in:
Richard Newman 2017-02-08 12:50:35 -08:00
parent 1122960462
commit 1aa33423dc

View file

@ -37,7 +37,7 @@ pub use edn::{NamespacedKeyword, PlainSymbol};
pub type SrcVarName = String; // Do not include the required syntactic '$'.
#[derive(Clone, Debug, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Variable(pub PlainSymbol);
pub trait FromValue<T> {