Bitwise operations on the bytes of strings in Lua. - Keywords: lua bit-manipulation string-manipulation
Pedro Gimeno 53402ebaa9 Add license statement to testsuite.lua too | 9 years ago | |
---|---|---|
.gitignore | 9 years ago | |
Makefile | 9 years ago | |
README.md | 9 years ago | |
strbit.c | 9 years ago | |
testsuite.lua | 9 years ago |
The purpose of this Lua module is to perform bitwise operations on the bytes of Lua strings, "in parallel". It's probably most useful when manipulating bitmaps represented as strings (e.g. for collision detection in games), but there may be other uses.
Supported bitwise operations are: bshiftleft
(and shift right via negative parameter), band
, bor
, bxor
, bnot
.
This software is licensed under the zlib license.
(C) Copyright 2015 Pedro Gimeno Fortea. All rights reserved.
This software is provided 'as-is', without any express or implied warranty. In no event will the author or authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: