logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sc::AggregateKeyVal - This takes several KeyVal objects and makes them look like one KeyVal object.

Author

       Generated automatically by Doxygen for MPQC from the source code.

Version 2.3.1                                    Sun Oct 4 2020                           sc::AggregateKeyVal(3)

Detailed Description

       This takes several KeyVal objects and makes them look like one KeyVal object.

       When a key is sought first KeyVal, then the next, and so on is searched until the keyword is found.

Name

       sc::AggregateKeyVal - This takes several KeyVal objects and makes them look like one KeyVal object.

Synopsis

       #include <keyval.h>

       Inherits sc::KeyVal.

   PublicMemberFunctionsConstructors.
       These contructors create an AggregateKeyVal that is formed from several other KeyVal objects.

       The search order is keyval1, keyval2, and so on. All KeyVal objects including and after the first null
       KeyVal will be ignored.

           AggregateKeyVal (const Ref< KeyVal > &keyval1)
           AggregateKeyVal (const Ref< KeyVal > &keyval1, const Ref< KeyVal > &keyval2)
           AggregateKeyVal (const Ref< KeyVal > &keyval1, const Ref< KeyVal > &keyval2, const Ref< KeyVal >
               &keyval3)
           AggregateKeyVal (const Ref< KeyVal > &keyval1, const Ref< KeyVal > &keyval2, const Ref< KeyVal >
               &keyval3, const Ref< KeyVal > &keyval4)
           ~AggregateKeyVal ()
           void errortrace (std::ostream &fp=ExEnv::err0())
               Write a message to fp describing the error.
           void dump (std::ostream &fp=ExEnv::err0())
               Write a message to fp describing the error.

   ProtectedMemberFunctions
       int key_exists (const char *)
           Ultimately called by exists.
       Ref< KeyValValue > key_value (const char *, const KeyValValue &def)
           Ultimately called by value.

   AdditionalInheritedMembers

See Also