3 #ifndef AWKWARD_UNIONTYPE_H_ 4 #define AWKWARD_UNIONTYPE_H_ 28 const std::string& typestr,
29 const std::vector<TypePtr>& types);
32 const std::vector<TypePtr>
41 type(int64_t
index)
const;
44 tostring_part(
const std::string& indent,
45 const std::string& pre,
46 const std::string& post)
const override;
49 shallow_copy()
const override;
52 equal(
const TypePtr& other,
bool check_parameters)
const override;
55 numfields()
const override;
61 key(int64_t fieldindex)
const override;
64 haskey(
const std::string& key)
const override;
66 const std::vector<std::string>
67 keys()
const override;
70 empty()
const override;
74 const std::vector<TypePtr> types_;
78 #endif // AWKWARD_OPTIONTYPE_H_
#define LIBAWKWARD_EXPORT_SYMBOL
Definition: common.h:45
const std::string key(const RecordLookupPtr &recordlookup, int64_t fieldindex, int64_t numfields)
Returns the key associated with a field index, given a RecordLookup and a number of fields...
Definition: BitMaskedArray.h:15
Abstract superclass of all high level types (flat hierarchy).
Definition: Type.h:23
Describes the high level type of heterogeneous data.
Definition: UnionType.h:18
const std::vector< std::string > keys(const RecordLookupPtr &recordlookup, int64_t numfields)
Returns a given RecordLookup as keys or generate anonymous ones form a number of fields.
std::map< std::string, std::string > Parameters
Definition: util.h:165
int64_t fieldindex(const RecordLookupPtr &recordlookup, const std::string &key, int64_t numfields)
Returns the field index associated with a key, given a RecordLookup and a number of fields...
bool haskey(const RecordLookupPtr &recordlookup, const std::string &key, int64_t numfields)
Returns true if a RecordLookup has a given key; false otherwise.
std::shared_ptr< Type > TypePtr
Definition: Content.h:23
std::shared_ptr< Content > ContentPtr
Definition: ArrayBuilder.h:16