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 8 سال پیش
.gitignore 4717c08d4d Add .gitignore 8 سال پیش
Makefile 232683e284 Add first version. Only rotation supported so far. 8 سال پیش
README.md 1ae9af9eca Add README.md and license 8 سال پیش
strbit.c 4f1f714c07 Fix a forgotten change that introduced a bug in XOR and OR 8 سال پیش
testsuite.lua 53402ebaa9 Add license statement to testsuite.lua too 8 سال پیش

README.md

strbit


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:

  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.