All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.io7m.smfj.specification.attribute.hs Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
module Attribute where

data ComponentType =
    IntegerSigned
  | IntegerUnsigned
  | FloatingPoint

data AttributeType = AttributeType {
  attribute_component_type  :: ComponentType,
  attribute_component_count :: Word32,
  attribute_component_size  :: Word32
}

data Attribute = Attribute {
  attribute_name :: String,
  attribute_type :: AttributeType
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy