Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getAttribute with default #5

Open
p0nce opened this issue Jan 12, 2015 · 1 comment
Open

getAttribute with default #5

p0nce opened this issue Jan 12, 2015 · 1 comment

Comments

@p0nce
Copy link

p0nce commented Jan 12, 2015

It would be cool if getAttribute can return a default value if the attribute is not found.

    string getAttribute(string name, string defaultValue = null) 
    {
        if (name in _attributes)
            return xmlDecode(_attributes[name]);
        else
            return defaultValue;
    }
@TETYYS
Copy link

TETYYS commented Feb 1, 2016

auto a = x.getAttribute("name");
auto b = a == null ? defaultValue : a;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants