Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112842228
assertions.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, May 13, 06:35
Size
566 B
Mime Type
text/x-c++
Expires
Thu, May 15, 06:35 (2 d)
Engine
blob
Format
Raw Data
Handle
26084931
Attached To
rGOOSEFEM GooseFEM
assertions.h
View Options
/**
* Common assertions with verbosity.
*
* \file assertions.h
* \copyright Copyright 2017. Tom de Geus. All rights reserved.
* \license This project is released under the GNU Public License (GPLv3).
*/
#ifndef GOOSEFEM_ASSERTIONS_H
#define GOOSEFEM_ASSERTIONS_H
#include "config.h"
namespace
GooseFEM
{
/**
* Returns true is a list is unique (has not duplicate items).
* \param a Array-like.
* \return `true` if `a` is unique.
*/
template
<
class
T
>
inline
bool
is_unique
(
const
T
&
a
);
}
// namespace GooseFEM
#include "assertions.hpp"
#endif
Event Timeline
Log In to Comment