(* raw-types.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. * * This file defines the representation of the raw scalar types used to * define image data in the NRRD file format. *) structure RawTypes = struct (* raw numeric types as supported by NRRD *) datatype ty = RT_Int8 | RT_UInt8 | RT_Int16 | RT_UInt16 | RT_Int32 | RT_UInt32 | RT_Int64 | RT_UInt64 | RT_Float | RT_Double fun fromString ty = (case ty of "signed char" => RT_Int8 | "unsigned char" => RT_UInt8 | "short" => RT_Int16 | "unsigned short" => RT_UInt16 | "int" => RT_Int32 | "unsigned int" => RT_UInt32 | "long long int" => RT_Int64 | "unsigned long long int" => RT_UInt64 | "float" => RT_Float | "double" => RT_Double | _ => raise Fail("unknown raw type "^ty) (* end case *)) end
Click to toggle
does not end with </html> tag
does not end with </body> tag
The output has ended thus: | "double" => RT_Double | _ => raise Fail("unknown raw type "^ty) (* end case *)) end