xtd 0.2.0
Loading...
Searching...
No Matches
iequatable.h
Go to the documentation of this file.
1
4#pragma once
6#include "interface.h"
7
9namespace xtd {
10 template<typename type_t>
22 class iequatable : public interface, public equality_operators<type_t, iequatable<type_t>> {
23 public:
25
30 virtual bool equals(const type_t&) const noexcept = 0;
32 };
33}
Internal comparable operators definition.
Definition equality_operators.h:25
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.h:22
virtual bool equals(const type_t &) const noexcept=0
Indicates whether the current object is equal to another object of the same type.
Represent an interface class.
Definition interface.h:31
Contains xtd::equality_operators class.
Contains xtd::interface interface.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10