npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

logiq

v0.1.3

Published

Awesome logical and bitwise operators with support for TypedArrays

Downloads

35

Readme

logiq

CI Maintainability Test Coverage XO code style

Awesome logical and bitwise operators with support for BigInt and TypedArray

Install

npm install logiq

Usage

import {logical, bitwise, bigint, typedArray} from 'logiq';

logical.xor(true, false);
//=> true

bitwise.xor(0b1100, 0b1010);
//=> 6

bigint.xor(0b1100n, 0b1010n);
//=> 6n

typedArray.xor(Uint8Array.of(255, 127, 0), Uint8Array.of(255));
//=> Uint8Array(3) [ 0, 128, 255 ]

Modules

logical

import {logical} from 'logiq';

Provides logical connectives that return boolean values. Accepts arguments of type any and converts them to boolean values before processing.

bitwise

import {bitwise} from 'logiq';

Provides bitwise operators for the basic number type. All numbers in JavaScript are signed, so some functions may flip the sign bit and yield unexpected results.

bigint

import {bigint} from 'logiq';

Provides bitwise operators for the bigint type. Operands are automatically converted to bigint before processing. Remember that bigint is signed, so some functions may flip the sign bit and yield unexpected results.

typedArray

import {typedArray} from 'logiq';

Provides bitwise operators for all of the built-in TypedArray types. Under the hood, the module uses Uint8Array for compatibility between different TypedArray variants. The result is also returned as a Uint8Array.

If the operands differ in byte length, the shorter of the two will be repeated as many times as needed to match the other's length. This is useful in cases where a mask needs to be applied to every block of data in an array.

API

Each logiq module exports the same set of functions. All binary operators are variadic and left-associative. For example, and(a, b, c) is equivalent to (a AND b) AND c.

not(p)

Performs logical negation or bitwise NOT.

and(p, q, ...args)

Performs logical conjunction or bitwise AND.

or(p, q, ...args)

Performs logical disjunction or bitwise OR.

imply(p, q, ...args)

Performs logical implication or bitwise IMPLY.

xor(p, q, ...args)

Performs logical exclusive disjunction or bitwise XOR.

nand(p, q, ...args)

Performs logical alternative denial or bitwise NAND.

nor(p, q, ...args)

Performs logical joint denial or bitwise NOR.

nimply(p, q, ...args)

Performs logical nonimplication or bitwise NIMPLY.

xnor(p, q, ...args)

Performs logical biconditional or bitwise XNOR.