proxygen
folly::gen::detail::InfiniteImpl< Value > Class Template Reference

#include <Base-inl.h>

Public Member Functions

bool test (const Value &) const
 
void step (Value &current) const
 

Static Public Attributes

static constexpr bool infinite = true
 

Detailed Description

template<class Value>
class folly::gen::detail::InfiniteImpl< Value >

Definition at line 379 of file Base-inl.h.

Member Function Documentation

template<class Value>
void folly::gen::detail::InfiniteImpl< Value >::step ( Value &  current) const
inline

Definition at line 384 of file Base-inl.h.

References current.

384  {
385  ++current;
386  }
int current
template<class Value>
bool folly::gen::detail::InfiniteImpl< Value >::test ( const Value &  ) const
inline

Definition at line 381 of file Base-inl.h.

381  {
382  return true;
383  }

Member Data Documentation

template<class Value>
constexpr bool folly::gen::detail::InfiniteImpl< Value >::infinite = true
static

Definition at line 387 of file Base-inl.h.


The documentation for this class was generated from the following file: