Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct key_value_pair_view

boost::process::v2::environment::key_value_pair_view — A view for a key value pair in an environment.

Synopsis

// In header: <boost/process/v2/environment.hpp>


struct key_value_pair_view {
  // types
  typedef                       ;      
  typedef  ;     
  typedef basic_cstring_ref<  ;
  typedef   ;     

  // construct/copy/destruct
  ();
  (key_value_pair_view &) = ;
  (key_value_pair_view &&);
  template<typename Source, 
           typename  = string_view_type, > 
    ();
  ();
  ();
  key_value_pair_view & (key_value_pair_view &) = ;
  key_value_pair_view & (key_value_pair_view &&);
  ~();

  // public member functions
   (key_value_pair_view &) ;
  string_view_type () ;
  () ;
  () ;
   (key_value_pair_view) ;
   () ;
   (string_view_type) ;
   () ;
  template<typename CharT, typename Traits, 
           typename Alloc> 
     
    ( = ) ;
   () ;
   () ;
   () ;
   () ;
  key_view () ;
  value_view () ;
  template< Idx>  () ;
   () ;
   () ;
   () ;
  template<> key_view () ;
  template<> value_view () ;
};

Description

key_value_pair_view public construct/copy/destruct

  1. ();
  2. (key_value_pair_view & p) = ;
  3. (key_value_pair_view && p);
  4. template<typename Source, 
             typename  = string_view_type, > 
      ( source);
  5. ( p);
  6. ( p);
  7. key_value_pair_view & (key_value_pair_view & p) = ;
  8. key_value_pair_view & (key_value_pair_view && p);
  9. ~();

key_value_pair_view public member functions

  1.  (key_value_pair_view & other) ;
  2. string_view_type () ;
  3. () ;
  4. () ;
  5.  (key_value_pair_view p) ;
  6.  ( str) ;
  7.  (string_view_type str) ;
  8.  ( s) ;
  9. template<typename CharT, typename Traits, 
             typename Alloc> 
       
      ( alloc = ) ;
  10.  () ;
  11.  () ;
  12.  () ;
  13.  () ;
  14. key_view () ;
  15. value_view () ;
  16. template< Idx>  () ;
  17.  () ;
  18.  () ;
  19.  () ;
  20. template<> key_view () ;
  21. template<> value_view () ;

PrevUpHomeNext