Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct value_view

boost::process::v2::environment::value_view — A view for a value in an environment.

Synopsis

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


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

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

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

Description

value_view public construct/copy/destruct

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

value_view public member functions

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

PrevUpHomeNext