about summary refs log tree commit diff
path: root/tvix/eval/src/value.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-08-08T13·38+0300
committertazjin <tazjin@tvl.su>2022-08-12T14·09+0000
commit0d2896519cf8dae97da024912d93c37b3c3bba85 (patch)
tree496a282070004acbcf7643383c7ac475e1bc59da /tvix/eval/src/value.rs
parent9c5a249b3059fa7951948b27ba5365d4570843ff (diff)
refactor(tvix/eval): move NumberPair struct definition to vm module r/4417
This isn't relevant to the value type itself.

Change-Id: I678bc92a8a530b1081ed498bf3ff7925217bcc01
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6081
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/value.rs')
-rw-r--r--tvix/eval/src/value.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tvix/eval/src/value.rs b/tvix/eval/src/value.rs
index 842d561d67..699c7de7bc 100644
--- a/tvix/eval/src/value.rs
+++ b/tvix/eval/src/value.rs
@@ -39,9 +39,3 @@ impl Value {
         }
     }
 }
-
-#[derive(Clone, Copy, Debug, PartialEq)]
-pub enum NumberPair {
-    Floats(f64, f64),
-    Integer(i64, i64),
-}