IceShard 1
A personal game engine project, with development focused on 2D/2.5D games.
Loading...
Searching...
No Matches
config_impl.hxx File Reference

Go to the source code of this file.

Namespaces

namespace  ice
 SPDX-License-Identifier: MIT.
namespace  ice::config
namespace  ice::config::detail

Functions

auto ice::config::detail::find (ice::Config const &config, ice::u32 index, ice::config::detail::ConfigKey const *&out_key, ice::config::detail::ConfigValue const *&out_value) noexcept -> ice::ErrorCode
auto ice::config::detail::find (ice::Config const &config, ice::String strkey, ice::config::detail::ConfigKey const *&out_key, ice::config::detail::ConfigValue const *&out_value) noexcept -> ice::ErrorCode
auto ice::config::detail::gettype (ice::config::detail::ConfigKey const *key) noexcept -> ice::ConfigValueType
bool ice::config::detail::istype (ice::config::detail::ConfigKey const *key, ice::ConfigValueType value_type) noexcept
auto ice::config::detail::entry_key (ice::Config const &config, ice::config::detail::ConfigKey const &key) noexcept -> ice::String
auto ice::config::detail::entry_first (ice::config::detail::ConfigKey const *&array_key, ice::config::detail::ConfigValue const *&array_value) noexcept -> ice::ErrorCode
auto ice::config::detail::entry_next (ice::config::detail::ConfigKey const *&array_key, ice::config::detail::ConfigValue const *&array_value) noexcept -> ice::ErrorCode
auto ice::config::detail::array_size (ice::config::detail::ConfigKey const *array_first_key) noexcept -> ice::u32
auto ice::config::detail::array_first (ice::config::detail::ConfigKey const *&array_key, ice::config::detail::ConfigValue const *&array_value) noexcept -> ice::ErrorCode
auto ice::config::detail::array_next (ice::config::detail::ConfigKey const *&array_key, ice::config::detail::ConfigValue const *&array_value) noexcept -> ice::ErrorCode
template<typename T>
requires (ice::concepts::ConfigValueType<T>)
auto ice::config::detail::get (ice::Config const &config, ice::config::detail::ConfigKey const *key, ice::config::detail::ConfigValue const *value, T &out_value, ice::ConfigValueFlags flags) noexcept -> ice::ErrorCode
template<typename T, typename Key>
requires (ice::concepts::ConfigValueType<T> && ice::concepts::ConfigKeyType<Key>)
auto ice::config::detail::get (ice::Config const &config, Key key, T &out_value, ice::ConfigValueFlags flags) noexcept -> ice::ErrorCode
template<typename T, typename Key>
requires (ice::concepts::ConfigValueType<T> && ice::concepts::ConfigKeyType<Key>)
auto ice::config::detail::get_array (ice::Config const &config, Key key, ice::Array< T > &out_values, ice::ConfigValueFlags flags) noexcept -> ice::ErrorCode