about summary refs log tree commit diff
path: root/tvix/eval/src/value.rs
blob: 037284b144b21a8703f3849061e231c74bcf27d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//! This module implements the backing representation of runtime
//! values in the Nix language.

#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Value {
    Null,
    Bool(bool),
    Integer(i64),
    Float(f64),
}