Skip to content

Instantly share code, notes, and snippets.

@fabianbs
fabianbs / BitSet.cs
Last active July 16, 2020 05:57 — forked from NightOwl888/BitSet.cs
C# port of the java.util.BitSet class
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
namespace BitSet {
/* BitSet.cs -- A vector of bits.
Copyright (C) 1998, 1999, 2000, 2001, 2004, 2005 Free Software Foundation, Inc.