DataSegment
Namespace: Deedle
Provides helper functions and active patterns for working with DataSegment
values
Functions and values
Active patterns
Active pattern | Description | ||
( |Any| )(ds)
Signature: ds:DataSegment<'T> -> DataSegmentKind * 'T
Type parameters: 'T |
A complete active pattern that extracts the kind and data from a let sumAny = function DataSegment.Any(_, data) -> Stats.sum data CompiledName: |
||
( |Complete|Incomplete| )(ds)
Signature: ds:DataSegment<'?693182> -> Choice<'?693182,'?693182>
Type parameters: '?693182 |
Complete active pattern that makes it possible to write functions that behave differently for complete and incomplete segments. For example, the following returns zero for incomplete segments:
val sumSegmentOrZero : (obj -> obj)
CompiledName: |