ONE - On-device Neural Engine
Loading...
Searching...
No Matches
nest::Bound Class Reference

#include <Bound.h>

Public Member Functions

 Bound ()=default
 
 Bound (int64_t min, int64_t max)
 
int64_t min (void) const
 
int64_t max (void) const
 

Detailed Description

Definition at line 25 of file Bound.h.

Constructor & Destructor Documentation

◆ Bound() [1/2]

nest::Bound::Bound ( )
default

◆ Bound() [2/2]

nest::Bound::Bound ( int64_t  min,
int64_t  max 
)
inline

Definition at line 31 of file Bound.h.

31 : _min{min}, _max{max}
32 {
33 // DO NOTHING
34 }
int64_t max(void) const
Definition Bound.h:38
int64_t min(void) const
Definition Bound.h:37

Member Function Documentation

◆ max()

int64_t nest::Bound::max ( void  ) const
inline

Definition at line 38 of file Bound.h.

38{ return _max; }

◆ min()

int64_t nest::Bound::min ( void  ) const
inline

Definition at line 37 of file Bound.h.

37{ return _min; }

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