Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct end

boost::proto::functional::end — A PolymorphicFunctionObject type that invokes the boost::end() accessor function on its arguments.

Synopsis

// In header: <boost/proto/functional/range/end.hpp>


struct end :  proto::callable {
  // member classes/structs/unions
  template<typename This, typename Range> 
  struct result<> :  
  {
  };

  // public member functions
  template<typename Range> 
     () ;
  template<typename Range> 
     
    () ;
};

Description

A PolymorphicFunctionObject type that invokes the boost::end() accessor function on its arguments.

end public member functions

  1. template<typename Range> 
       ( rng) ;

    Returns:

    boost::end(rng)

  2. template<typename Range> 
       
      ( rng) ;

    Returns:

    boost::end(rng)


PrevUpHomeNext