1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

bf: rename to bitfield

This commit is contained in:
Alexander Medvednikov 2019-09-08 17:45:51 +03:00
parent 71224ad17c
commit ae866260c8
2 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
module bf
module bitfield
/*
bf (BitField) is a module (shared library for V programming language) for
bitfield is a module for
manipulating arrays of bits, i.e. series of zeroes and ones spread across an
array of storage units (unsigned 32-bit integers).

View File

@ -1,4 +1,4 @@
import bf
import bitfield
import rand
import time