Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct size

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

Synopsis

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


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

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

Description

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

size public member functions

  1. template<typename Range> 
       
      ( rng) ;

    Returns:

    boost::size(rng)


PrevUpHomeNext