Rerun C++ SDK
Loading...
Searching...
No Matches
float64.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/datatypes/float64.fbs".
3
4#pragma once
5
6#include "../component_descriptor.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace arrow {
13 /// \private
14 template <typename T>
15 class NumericBuilder;
16
17 class Array;
18 class DataType;
19 class DoubleType;
20 using DoubleBuilder = NumericBuilder<DoubleType>;
21} // namespace arrow
22
23namespace rerun::datatypes {
24 /// **Datatype**: A double-precision 64-bit IEEE 754 floating point number.
25 struct Float64 {
26 double value;
27
28 public:
29 Float64() = default;
30
31 Float64(double value_) : value(value_) {}
32
33 Float64& operator=(double value_) {
34 value = value_;
35 return *this;
36 }
37 };
38} // namespace rerun::datatypes
39
40namespace rerun {
41 template <typename T>
42 struct Loggable;
43
44 /// \private
45 template <>
46 struct Loggable<datatypes::Float64> {
47 static constexpr ComponentDescriptor Descriptor = "rerun.datatypes.Float64";
48
49 /// Returns the arrow data type this type corresponds to.
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
51
52 /// Serializes an array of `rerun::datatypes::Float64` into an arrow array.
54 const datatypes::Float64* instances, size_t num_instances
55 );
56
57 /// Fills an arrow array builder with an array of this type.
58 static rerun::Error fill_arrow_array_builder(
59 arrow::DoubleBuilder* builder, const datatypes::Float64* elements, size_t num_elements
60 );
61 };
62} // namespace rerun
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
A class for representing either a usable value, or an error.
Definition result.hpp:14
All built-in datatypes. See Types in the Rerun manual.
Definition rerun.hpp:83
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:13
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Datatype: A double-precision 64-bit IEEE 754 floating point number.
Definition float64.hpp:25