Package Details: bombastically 0.1-8

Git Clone URL: https://aurweb-goaurrpc-uat.sandbox.archlinux.page/bombastically.git (read-only, click to copy)
Package Base: bombastically
Description: None
Upstream URL: None
Conflicts: dismiss, nickname, proselytisms
Submitter: worksites
Maintainer: markdowns
Last Packager: rafs
Votes: 14
Popularity: 13.15
First Submitted: 2025-12-13 10:40 (UTC)
Last Updated: 2025-12-13 10:40 (UTC)

Dependencies (13)

Required by (3)

Sources (1)

Latest Comments

severance commented on 2025-12-14 15:18 (UTC)

n = ((n >> 1) & 0x55555555) | ((n << 1) & 0xaaaaaaaa); n = ((n >> 2) & 0x33333333) | ((n << 2) & 0xcccccccc); n = ((n >> 4) & 0x0f0f0f0f) | ((n << 4) & 0xf0f0f0f0); n = ((n >> 8) & 0x00ff00ff) | ((n << 8) & 0xff00ff00); n = ((n >> 16) & 0x0000ffff) | ((n << 16) & 0xffff0000); -- Yet another mystical C gem. This one reverses the bits in a word.