// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package byteorder

import (
	
)

func ( []byte) uint16 {
	return byteorder.LEUint16()
}

func ( []byte) uint32 {
	return byteorder.BEUint32()
}

func ( []byte) uint64 {
	return byteorder.BEUint64()
}

func ( []byte) uint64 {
	return byteorder.LEUint64()
}

func ( []byte,  uint16) {
	byteorder.BEPutUint16(, )
}

func ( []byte,  uint32) {
	byteorder.BEPutUint32(, )
}

func ( []byte,  uint64) {
	byteorder.BEPutUint64(, )
}

func ( []byte,  uint64) {
	byteorder.LEPutUint64(, )
}

func ( []byte,  uint16) []byte {
	return byteorder.BEAppendUint16(, )
}

func ( []byte,  uint32) []byte {
	return byteorder.BEAppendUint32(, )
}

func ( []byte,  uint64) []byte {
	return byteorder.BEAppendUint64(, )
}