NeoN
WIP Prototype of a modern OpenFOAM core
Loading...
Searching...
No Matches
NeoN::hasView Concept Reference

Concept, for any type which has the 'view' method. More...

#include <view.hpp>

Concept definition

template<class Type>
concept NeoN::hasView =
requires(Type& inst) { inst.view(); } || requires(const Type& inst) { inst.view(); }
Concept, for any type which has the 'view' method.
Definition view.hpp:91

Detailed Description

Concept, for any type which has the 'view' method.

Template Parameters
TypesClass type with potential 'view' method.

Definition at line 91 of file view.hpp.