xtd 0.2.0
ihashable.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "interface.hpp"
6#include "size.hpp"
7
9namespace xtd {
21 class ihashable : public interface {
22 public:
24
28 virtual xtd::size get_hash_code() const noexcept = 0;
30 };
31}
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition ihashable.hpp:21
virtual xtd::size get_hash_code() const noexcept=0
Serves as a hash function for a particular type.
Represent an interface class.
Definition interface.hpp:31
size_t size
Represents a size of any object in bytes.
Definition size.hpp:23
Contains xtd::interface interface.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Contains xtd::drawing::size class.