Click or drag to resize
Ab4d.SharpEngine logo

Bool32 Structure

A boolean value stored in a 4-byte unsigned integer.
Inheritance Hierarchy
SystemObject
  SystemValueType
    Ab4d.VulkanBool32

Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
Syntax
C#
public struct Bool32 : IEquatable<Bool32>

The Bool32 type exposes the following members.

Constructors
 NameDescription
Public methodBool32 Constructs a new Bool32 with the given raw value.
Top
Methods
 NameDescription
Public methodEquals(Bool32) Returns whether another Bool32 value is considered equal to this one. Two Bool32s are considered equal when their raw values are equal.
Public methodEquals(Object)
(Overrides ValueTypeEquals(Object))
Public methodGetHashCode
(Overrides ValueTypeGetHashCode)
Public methodToString
(Overrides ValueTypeToString)
Top
Operators
Fields
 NameDescription
Public fieldStatic memberFalse Represents the boolean "true" value. Has a raw value of 0.
Public fieldStatic memberTrue Represents the boolean "true" value. Has a raw value of 1.
Public fieldValue The raw value of the Bool32. A value of 0 represents "false", all other values represent "true".
Top
See Also