surrealdb_core/sql/value/
first.rs

1use crate::sql::part::Part;
2use crate::sql::value::Value;
3
4impl Value {
5	pub fn first(&self) -> Self {
6		self.pick(&[Part::First])
7	}
8}