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

9 lines
134 B
Rust
Raw Normal View History

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