top
|
up
|
prev
|
next
DefaultDouble Struct
Definition at line
216
of
BasicTypeOperation.hpp
Member Functions
std::unique_ptr<
Value
>
ConstructValue
(
const
std::vector<std::unique_ptr<
Value
>>& argumentValues,
const
Span& span,
const
boost::uuids::uuid& moduleId,
Value
* receiver)
static
void
*
Generate
(Emitter& emitter)
static
Member Function Details
ConstructValue Member Function
std::unique_ptr<
Value
> cmajor::symbols::DefaultDouble::ConstructValue(
const
std::vector<std::unique_ptr<
Value
>>& argumentValues,
const
Span& span,
const
boost::uuids::uuid& moduleId,
Value
* receiver)
static
Definition at line
219
of
BasicTypeOperation.hpp
:
219
{
return
std
::
unique_ptr
<
Value
>
(
new
DoubleValue
(
span
,
moduleId
,
0.0
)
)
;
}
Generate Member Function
void
* cmajor::symbols::DefaultDouble::Generate(Emitter& emitter)
static
Definition at line
218
of
BasicTypeOperation.hpp
:
218
{
return
emitter
.
CreateDefaultIrValueForDouble
(
)
;
}
top
|
up
|
prev
|
next