-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathBooleanDataFrameColumn.cs
More file actions
33 lines (25 loc) · 1.39 KB
/
BooleanDataFrameColumn.cs
File metadata and controls
33 lines (25 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.Data.Analysis
{
public partial class BooleanDataFrameColumn : PrimitiveDataFrameColumn<bool>
{
public BooleanDataFrameColumn(string name, IEnumerable<bool?> values) : base(name, values) { }
public BooleanDataFrameColumn(string name, IEnumerable<bool> values) : base(name, values) { }
public BooleanDataFrameColumn(string name, long length = 0) : base(name, length) { }
public BooleanDataFrameColumn(string name, ReadOnlyMemory<byte> buffer, ReadOnlyMemory<byte> nullBitMap, int length = 0, int nullCount = 0) : base(name, buffer, nullBitMap, length, nullCount) { }
internal BooleanDataFrameColumn(string name, PrimitiveColumnContainer<bool> values) : base(name, values) { }
protected override PrimitiveDataFrameColumn<bool> CreateNewColumn(string name, long length = 0)
{
return new BooleanDataFrameColumn(name, length);
}
internal override PrimitiveDataFrameColumn<bool> CreateNewColumn(string name, PrimitiveColumnContainer<bool> container)
{
return new BooleanDataFrameColumn(name, container);
}
}
}