Skip to content

Commit

Permalink
feat: Added CLinkAddress concept
Browse files Browse the repository at this point in the history
  • Loading branch information
linksplatform-sweepai[bot] authored Sep 20, 2023
1 parent 8259973 commit 0e26908
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cpp/Platform.Interfaces/CLinkAddress.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#pragma once

#include <concepts>
#include <type_traits>

namespace Platform::Interfaces {
template <typename T>
concept CLinkAddress = std::is_integral<T>::value && std::is_unsigned<T>::value;
}

0 comments on commit 0e26908

Please sign in to comment.