public func copyRangeOf(from : Int, to : Int) -> XyoBuffer {
        let returnBuffer = XyoBuffer()
        
        for i in from...to - 1 {
            returnBuffer.put(bits: getUInt8(offset: i))