Ponca  82fc77e8c6294111c6f00670e92ec58a24e2ecf2
Point Cloud Analysis library
Loading...
Searching...
No Matches
concepts.h
1/*
2This Source Code Form is subject to the terms of the Mozilla Public
3 License, v. 2.0. If a copy of the MPL was not distributed with this
4 file, You can obtain one at http://mozilla.org/MPL/2.0/.
5*/
6
7#pragma once
8#include <concepts>
9
10namespace Ponca
11{
12 template <int N>
13 concept ValidCapacity = (N > 0);
14};
This Source Code Form is subject to the terms of the Mozilla Public License, v.
Definition concepts.h:11