MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / isArray

Method isArray

source/src/typepack/TypePack.h:132–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130 value& operator=(double v) { base::operator=(static_cast<float64>(v)); return *this; }
131 value& operator=(const char* v) { base::operator=(string(v)); return *this; }
132 value& operator=(const string& v) { base::operator=(v); return *this; }
133 value& operator=(string&& v) { base::operator=(std::move(v)); return *this; }
134 value& operator=(const binary& v) { base::operator=(v); return *this; }
135 value& operator=(binary&& v) { base::operator=(std::move(v)); return *this; }

Callers 1

fromBinaryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected