surrealpatch/lib/src/sql/value/first.rs

9 lines
136 B
Rust
Raw Normal View History

use crate::sql::part::Part;
use crate::sql::value::Value;
impl Value {
pub fn first(&self) -> Self {
self.pick(&[Part::First])
}
}