/* * This file is subject to the terms and conditions defined in * file 'LICENSE.md', which is part of this source code package. */ package segments // OrganizationType is the enum for the stream sequence organization. type OrganizationType uint8 // Organization types defined in D.4.2. - File header bit 0 defines the stream sequence organisation. const ( ORandom OrganizationType = iota OSequential )