mu-sexp: add some small conveniences

This commit is contained in:
Dirk-Jan C. Binnema 2022-02-19 19:00:19 +02:00
parent be2f91c0ad
commit 69a465d849
1 changed files with 18 additions and 7 deletions

View File

@ -61,14 +61,25 @@ struct Sexp {
* Make a node for a string/integer/symbol/list value
*
* @param val some value
* @param empty_is_nil turn empty string into a 'nil' symbol
*
* @return a node
*/
static Sexp make_string(std::string&& val) { return Sexp{Type::String, std::move(val)}; }
static Sexp make_string(const std::string& val)
static Sexp make_string(std::string&& val, bool empty_is_nil=false)
{
if (empty_is_nil && val.empty())
return make_symbol("nil");
else
return Sexp{Type::String, std::move(val)};
}
static Sexp make_string(const std::string& val, bool empty_is_nil=false)
{
if (empty_is_nil && val.empty())
return make_symbol("nil");
else
return Sexp{Type::String, std::string(val)};
}
static Sexp make_number(int val) { return Sexp{Type::Number, format("%d", val)}; }
static Sexp make_symbol(std::string&& val)
{