surrealdb-core 3.2.3

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
1
2
3
4
5
6
7
8
9
10
//! Not function

use crate::exec::function::FunctionRegistry;
use crate::{define_pure_function, register_functions};

define_pure_function!(Not, "not", (value: Any) -> Bool, crate::fnc::not::not);

pub fn register(registry: &mut FunctionRegistry) {
	register_functions!(registry, Not);
}