basis.data.ByteOrder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of basis-data_2.11 Show documentation
Show all versions of basis-data_2.11 Show documentation
A foundation library for Scala focussed on efficiency and clean design
The newest version!
// ____ ___
// / __ | ___ ____ /__/___ A library of building blocks
// / __ / __ |/ ___|/ / ___|
// / /_/ / /_/ /\__ \/ /\__ \ (c) 2012-2015 Chris Sachs
// |_____/\_____\____/__/\____/ http://basis.reify.it
package basis.data
import scala.annotation.unchecked._
trait ByteOrder[+E <: Endianness] extends Any {
type Endian = E @uncheckedVariance
/** Returns the internal byte order.
* @group General */
def endian: Endian
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy