Skip to content

Commit

Permalink
Strengthen value trait with support for Eq/Ord.
Browse files Browse the repository at this point in the history
  • Loading branch information
01mf02 committed Apr 19, 2024
1 parent bcf7d20 commit 03d7a51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions jaq-interpret/src/val.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ pub trait ValT:
+ From<isize>
+ From<String>
+ FromIterator<Self>
+ PartialEq
+ PartialOrd
+ Add<Output = ValR2<Self>>
+ Sub<Output = ValR2<Self>>
+ Mul<Output = ValR2<Self>>
Expand Down

0 comments on commit 03d7a51

Please sign in to comment.