sdf-wit 0.14.0

Sdf WIT generator for sdf projects
Documentation
package sdf:arrow;

interface types {

  // arrow types
  variant dtype {
    %bool,
    %i32,
    %i64,
    %float32,
    %float64,
    %string,
    %timestamp,
    %u8,
    %u16,
    %u32,
    %u64,
    %i8,
    %i16,
  }

  variant dvalue {
     %bool(bool),
     %i8(s8),
     %i16(s16),
     %i32(s32),
     %i64(s64),
     %float32(f32),
     %float64(f64),
     %string(string),
     %timestamp(u64),
     %u8(u8),
     %u16(u16),
     %u32(u32),
     %u64(u64),
  }
}