gimo v0.1.0
Loading...
Searching...
No Matches
RawPointer.hpp
Go to the documentation of this file.
1// Copyright Dominic (DNKpp) Koepke 2025.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// https://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef GIMO_EXT_RAW_POINTER_HPP
7#define GIMO_EXT_RAW_POINTER_HPP
8
9#pragma once
10
11#include <cstddef>
12
13namespace gimo
14{
15 template <typename T>
16 struct traits;
17}
18
19template <typename T>
20struct gimo::traits<T*>
21{
22 static constexpr std::nullptr_t null{};
23};
24
25#endif
Definition AndThen.hpp:21
static constexpr std::nullptr_t null
Definition RawPointer.hpp:22
The central customization point for the library.
Definition Common.hpp:102