Nebula
Loading...
Searching...
No Matches
string.cc File Reference
#include "util/string.h"
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include "base64/base64.h"
#include "blob.h"
#include "math/mat4.h"
#include "math/vec2.h"
#include "math/vec3.h"
#include "math/vec4.h"
#include "math/quat.h"
#include "math/transform44.h"

Namespaces

namespace  Util
 A pinned array is an array which manages its own virtual memory.
 

Functions

Util::String operator""_str (const char *c, std::size_t s)
 Literal constructor form string, to use "foobar"_str will automatically construct a String.
 
bool Util::operator== (const String &a, const String &b)
 
bool Util::operator== (const String &a, const char *cStr)
 
bool Util::operator== (const char *cStr, const String &b)
 
bool Util::operator== (const String &a, std::nullptr_t)
 
bool Util::operator!= (const String &a, const String &b)
 
bool Util::operator< (const String &a, const String &b)
 
bool Util::operator> (const String &a, const String &b)
 
bool Util::operator<= (const String &a, const String &b)
 
bool Util::operator>= (const String &a, const String &b)
 

Function Documentation

◆ operator""_str()

Util::String operator""_str ( const char * c,
std::size_t s )

Literal constructor form string, to use "foobar"_str will automatically construct a String.

Overload literal operator.