Struct DuckDbBigInteger
The representation of a variable-length integer (BIGNUM) in a DuckDB vector.
Inherited Members
Namespace: Mallard.Types
Assembly: Mallard.dll
Syntax
public readonly ref struct DuckDbBigInteger
Remarks
This structure is only used for reading, not for writing/sending values to DuckDB.
Methods
| Edit this page View SourceConvertTo<T>()
Convert to some other binary integer type.
Declaration
public T ConvertTo<T>() where T : IBinaryInteger<T>
Returns
Type | Description |
---|---|
T | Instance of |
Type Parameters
Name | Description |
---|---|
T | Binary integer type, typically with a variable-length representation. |
Exceptions
Type | Condition |
---|---|
OverflowException | The given type |
ToBigInteger()
Convert to a .NET BigInteger instance.
Declaration
public BigInteger ToBigInteger()
Returns
Type | Description |
---|---|
BigInteger | BigInteger with the same numerical value. |