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

pub const SHORT: i16 = qnull_base::H; // -32_768i16
Expand description

Null value of short (0Nh).

Example

use kdbplus::ipc::*;
 
fn main(){
  let q_short_null=K::new_short(qnull::SHORT);
  assert_eq!(format!("{}", q_short_null), String::from("0Nh"));
}