This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Numerics; | |
| namespace Encompass.Collections | |
| { | |
| public static class BitSet1024Builder | |
| { | |
| public static BitSet1024 Zeroes() | |
| { | |
| return new BitSet1024(Vector256Builder.Zeroes(), Vector256Builder.Zeroes(), Vector256Builder.Zeroes(), Vector256Builder.Zeroes()); | |
| } |
NewerOlder