Add select

This commit is contained in:
JT
2021-10-02 17:55:05 +13:00
parent 7899745c4b
commit 6b76dd7cd7
6 changed files with 213 additions and 2 deletions

View File

@ -191,7 +191,7 @@ impl Value {
Value::Nothing { .. } => String::new(),
Value::Error { error } => format!("{:?}", error),
Value::Binary { val, .. } => format!("{:?}", val),
Value::CellPath { val, .. } => format!("{:?}", val),
Value::CellPath { val, .. } => val.into_string(),
}
}
@ -223,7 +223,7 @@ impl Value {
Value::Nothing { .. } => String::new(),
Value::Error { error } => format!("{:?}", error),
Value::Binary { val, .. } => format!("{:?}", val),
Value::CellPath { val, .. } => format!("{:?}", val),
Value::CellPath { .. } => self.into_string(),
}
}