MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / AbstractString

Method AbstractString

src/common/classes/fb_string.h:168–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166
167 template <class S>
168 AbstractString(const size_type limit, const S& v)
169 : max_length(static_cast<internal_size_type>(limit))
170 {
171 FB_SIZE_T l = v.length();
172 initialize(l);
173 memcpy(stringBuffer, v.c_str(), l);
174 }
175
176 explicit AbstractString(const size_type limit) :
177 max_length(static_cast<internal_size_type>(limit)),

Callers

nothing calls this directly

Calls 2

lengthMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected