Sha256: e06fc5d7d0d5f4fa1a8f5975da90c6473e72ee64c1c935122dd33f6f59ef5735
Contents?: true
Size: 345 Bytes
Versions: 3
Compression:
Stored size: 345 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RUCY_STRING_H__ #define __RUCY_STRING_H__ #include <stdarg.h> #include <string> namespace Rucy { typedef std::string String; String stringf (const char* format, ...); String stringf (const char* format, va_list args); template <typename T> String to_s (const T& val); }// Rucy #endif//EOH
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rucy-0.1.2 | include/rucy/string.h |
rucy-0.1.1 | include/rucy/string.h |
rucy-0.1.0 | include/rucy/string.h |