Constant kdbplus::ipc::qnull::LONG[][src]

pub const LONG: i64 = qnull_base::J; // -9_223_372_036_854_775_808i64
Expand description

Null value of long (0N).

Example

use kdbplus::ipc::*;
 
fn main(){
  let q_long_null=K::new_long(qnull::LONG);
  assert_eq!(format!("{}", q_long_null), String::from("0N"));
}