25 FInt(
const int& value);
29 inline void operator =(
const FInt& value)
31 this->buffer = value.buffer;
33 inline void operator =(
const int& value)
39 return this->buffer == value.buffer;
43 return this->buffer == value;
46 inline int Data()
const {
return this->buffer; }
48 static constexpr
int MinValue = INT_MIN;
49 static constexpr
int MaxValue = INT_MAX;
50 static constexpr UInt MaxUValue = UINT_MAX;
52 const type_info& GetType()
override;
53 FString GetName()
const override;
Boolean CompareTo(const FInt &value) const
< Returns TRUE if obejct is equels to value, otherwise FALSE
Definition: FInt.h:37
int Data() const
Returns value of fint object.
Definition: FInt.h:46
Boolean CompareTo(const int &value) const
< Returns TRUE if obect is equels to value, otherwise FALSE
Definition: FInt.h:41
virtual ~FInt()=default
Destroy fint object.
FInt()
Constructor of fint object.
Definition: FInt.h:26