OXY API 1.0
OXY API Library Documentation
Loading...
Searching...
No Matches
oxy::api::remove_entry_fn Struct Reference

Function object to remove an entry from the storage container in the OXY-API. More...

#include <storage.hpp>

Public Member Functions

void operator() (IStoragePtr const &stg, std::string const &name) const

Detailed Description

Function object to remove an entry from the storage container in the OXY-API.

This function object provides an operator() that takes a storage container pointer and an entry name, and removes the entry from the storage container. It is designed to be used in a constexpr context for compile-time evaluation of entry removal operations.

Member Function Documentation

◆ operator()()

void oxy::api::remove_entry_fn::operator() ( IStoragePtr const & stg,
std::string const & name ) const
Parameters
stg- The storage container pointer from which to remove the entry.
name- The name of the entry to remove from the storage container.