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

Added support for getting optional value #33 #34

Merged

Conversation

srivastava-yash
Copy link
Contributor

Added std::optional<T> getOptional<T>(const std::string& key) for getting optional values.
If key does not exist or is null it should return std::nullopt, otherwise value with type T it is castable to that

src/Config.cpp Outdated

if (value.index() == 0)
{
throw std::runtime_error("Config key " + keyPath + " has value of nullptr.");
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Return nullopt

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

resolved

Copy link
Owner

@cieslarmichal cieslarmichal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job, one little change

@cieslarmichal cieslarmichal linked an issue Feb 25, 2024 that may be closed by this pull request
Copy link
Owner

@cieslarmichal cieslarmichal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

@cieslarmichal cieslarmichal merged commit c237c6a into cieslarmichal:main Feb 25, 2024
4 checks passed
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

Successfully merging this pull request may close these issues.

Add new method for getting optional value
2 participants