Loading...
Searching...
No Matches
LayoutBuilder.h File Reference
#include "awkward/BuilderOptions.h"
#include "awkward/GrowableBuffer.h"
#include "awkward/utils.h"
#include <map>
#include <algorithm>
#include <tuple>
#include <string>
#include <functional>

Go to the source code of this file.

Classes

class  Field< ENUM, BUILDER >
 Helper class for sending a pair of field names (as enum) and field type as template parameters in Record. More...
 
class  Numpy< PRIMITIVE >
 Builds a NumpyArray which describes multi-dimensional data of PRIMITIVE type. More...
 
class  ListOffset< PRIMITIVE, BUILDER >
 Builds a ListOffsetArray which describes unequal-length lists (often called a "jagged" or "ragged" array). The underlying data for all lists are in a BUILDER content. It is subdivided into lists according to an offsets array, which specifies the starting and stopping index of each list. More...
 
class  String< PRIMITIVE >
 Helper for building an array of strings with a similar API as a Numpy builder. More...
 
class  Empty
 Builds an EmptyArray which has no content in it. It is used whenever an array's type is not known because it is empty. More...
 
class  Record< MAP, BUILDERS >
 Builds a RecordArray which represents an array of records, which can be of same or different types. Its contents is an ordered list of arrays with the same length as the length of its shortest content; all are aligned element-by-element, associating a field name to every content. More...
 
class  Tuple< BUILDERS >
 Builds a RecordArray which represents an array of tuples which can be of same or different types without field names, indexed only by their order. More...
 
class  Regular< SIZE, BUILDER >
 Builds a RegularArray that describes lists that have the same length, a single integer size. Its underlying content is a flattened view of the data; that is, each list is not stored separately in memory, but is inferred as a subinterval of the underlying data. More...
 
class  Indexed< PRIMITIVE, BUILDER >
 Builds an IndexedArray which consists of an index buffer. More...
 
class  IndexedOption< PRIMITIVE, BUILDER >
 Builds an IndexedOptionArray which consists of an index buffer. The negative values in the index are interpreted as missing. More...
 
class  Unmasked< BUILDER >
 Builds an UnmaskedArray which the values are never, in fact, missing. It exists to satisfy systems that formally require this high-level type without the overhead of generating an array of all True or all False values. More...
 
class  ByteMasked< VALID_WHEN, BUILDER >
 Builds a ByteMaskedArray using a mask which is an array of booleans that determines whether the corresponding value in the contents array is valid or not. More...
 
class  BitMasked< VALID_WHEN, LSB_ORDER, BUILDER >
 Builds a BitMaskedArray in which mask values are packed into a bitmap. More...
 
class  Union< TAGS, INDEX, BUILDERS >
 Builds a UnionArray which represents data drawn from an ordered list of contents, which can have different types, using tags, which is an array of integers indicating which content each array element draws from and index, which is an array of integers indicating which element from the content to draw from. More...
 

Namespaces

namespace  awkward
 
namespace  awkward::LayoutBuilder
 

Macros

#define AWKWARD_LAYOUTBUILDER_DEFAULT_OPTIONS   awkward::BuilderOptions(1024, 1)
 Object of BuilderOptions which sets the values of the default options.
 

Macro Definition Documentation

◆ AWKWARD_LAYOUTBUILDER_DEFAULT_OPTIONS

#define AWKWARD_LAYOUTBUILDER_DEFAULT_OPTIONS   awkward::BuilderOptions(1024, 1)

Object of BuilderOptions which sets the values of the default options.