Files
Misaki.HighPerformance/docs/documents/api/Misaki.HighPerformance.LowLevel.UniquePtr-1.yml

1106 lines
42 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
commentId: T:Misaki.HighPerformance.LowLevel.UniquePtr`1
id: UniquePtr`1
parent: Misaki.HighPerformance.LowLevel
children:
- Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor(`0*)
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach(`0*)
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(System.Object)
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Get
- Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode
- Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef
- Misaki.HighPerformance.LowLevel.UniquePtr`1.Share
- Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
- Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.UniquePtr{`0})~`0*
- Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.UniquePtr{`0}
- Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
langs:
- csharp
- vb
name: UniquePtr<T>
nameWithType: UniquePtr<T>
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>
type: Struct
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: UniquePtr
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 78
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
summary: >-
Provides exclusive ownership and management of an unmanaged pointer to a value of type <code class="typeparamref">T</code>.
Ensures that the pointer is not shared and can be safely transferred or detached.
remarks: <xref href="Misaki.HighPerformance.LowLevel.UniquePtr%601" data-throw-if-not-resolved="false"></xref> is designed to encapsulate a raw pointer, enforcing unique ownership semantics similar to C++'s std::unique_ptr.
example: []
syntax:
content: 'public struct UniquePtr<T> : IEquatable<UniquePtr<T>> where T : unmanaged'
typeParameters:
- id: T
description: The unmanaged type of the value to which the pointer refers.
content.vb: Public Structure UniquePtr(Of T As Structure) Implements IEquatable(Of UniquePtr(Of T))
implements:
- System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}
inheritedMembers:
- System.ValueType.ToString
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetType
- System.Object.ReferenceEquals(System.Object,System.Object)
nameWithType.vb: UniquePtr(Of T)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T)
name.vb: UniquePtr(Of T)
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor(`0*)
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor(`0*)
id: '#ctor(`0*)'
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: UniquePtr(T*)
nameWithType: UniquePtr<T>.UniquePtr(T*)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.UniquePtr(T*)
type: Constructor
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: .ctor
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 84
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public UniquePtr(T* value)
parameters:
- id: value
type: '{T}*'
content.vb: Public Sub New(value As T*)
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor*
nameWithType.vb: UniquePtr(Of T).New(T*)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).New(T*)
name.vb: New(T*)
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Get
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Get
id: Get
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Get()
nameWithType: UniquePtr<T>.Get()
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Get()
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Get
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 89
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public readonly T* Get()
return:
type: '{T}*'
content.vb: Public Function [Get]() As T*
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Get*
nameWithType.vb: UniquePtr(Of T).Get()
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Get()
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef
id: GetRef
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: GetRef()
nameWithType: UniquePtr<T>.GetRef()
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.GetRef()
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: GetRef
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 94
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public ref T GetRef()
return:
type: '{T}'
content.vb: Public ByRef Function GetRef() As T
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef*
nameWithType.vb: UniquePtr(Of T).GetRef()
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).GetRef()
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Share
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Share
id: Share
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Share()
nameWithType: UniquePtr<T>.Share()
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Share()
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Share
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 99
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public readonly SharedPtr<T> Share()
return:
type: Misaki.HighPerformance.LowLevel.SharedPtr{{T}}
content.vb: Public Function Share() As SharedPtr(Of T)
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Share*
nameWithType.vb: UniquePtr(Of T).Share()
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Share()
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach(`0*)
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach(`0*)
id: Attach(`0*)
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Attach(T*)
nameWithType: UniquePtr<T>.Attach(T*)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Attach(T*)
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Attach
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 104
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public void Attach(T* value)
parameters:
- id: value
type: '{T}*'
content.vb: Public Sub Attach(value As T*)
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach*
nameWithType.vb: UniquePtr(Of T).Attach(T*)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Attach(T*)
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach
id: Detach
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Detach()
nameWithType: UniquePtr<T>.Detach()
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Detach()
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Detach
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 110
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public T* Detach()
return:
type: '{T}*'
content.vb: Public Function Detach() As T*
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach*
nameWithType.vb: UniquePtr(Of T).Detach()
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Detach()
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
id: Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Equals(UniquePtr<T>)
nameWithType: UniquePtr<T>.Equals(UniquePtr<T>)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Equals(Misaki.HighPerformance.LowLevel.UniquePtr<T>)
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Equals
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 117
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
summary: Indicates whether the current object is equal to another object of the same type.
example: []
syntax:
content: public readonly bool Equals(UniquePtr<T> other)
parameters:
- id: other
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
description: An object to compare with this object.
return:
type: System.Boolean
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the current object is equal to the <code class="paramref">other</code> parameter; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
content.vb: Public Function Equals(other As UniquePtr(Of T)) As Boolean
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals*
implements:
- System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{{T}})
nameWithType.vb: UniquePtr(Of T).Equals(UniquePtr(Of T))
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Equals(Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: Equals(UniquePtr(Of T))
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(System.Object)
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals(System.Object)
id: Equals(System.Object)
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: Equals(object?)
nameWithType: UniquePtr<T>.Equals(object?)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Equals(object?)
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Equals
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 122
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
summary: Indicates whether this instance and a specified object are equal.
example: []
syntax:
content: public override readonly bool Equals(object? obj)
parameters:
- id: obj
type: System.Object
description: The object to compare with the current instance.
return:
type: System.Boolean
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if <code class="paramref">obj</code> and this instance are the same type and represent the same value; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
content.vb: Public Overrides Function Equals(obj As Object) As Boolean
overridden: System.ValueType.Equals(System.Object)
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals*
nameWithType.vb: UniquePtr(Of T).Equals(Object)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Equals(Object)
name.vb: Equals(Object)
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode
id: GetHashCode
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: GetHashCode()
nameWithType: UniquePtr<T>.GetHashCode()
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.GetHashCode()
type: Method
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: GetHashCode
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 127
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
summary: Returns the hash code for this instance.
example: []
syntax:
content: public override readonly int GetHashCode()
return:
type: System.Int32
description: A 32-bit signed integer that is the hash code for this instance.
content.vb: Public Overrides Function GetHashCode() As Integer
overridden: System.ValueType.GetHashCode
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode*
nameWithType.vb: UniquePtr(Of T).GetHashCode()
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).GetHashCode()
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.UniquePtr{`0})~`0*
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.UniquePtr{`0})~`0*
id: op_Implicit(Misaki.HighPerformance.LowLevel.UniquePtr{`0})~`0*
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: implicit operator T*(UniquePtr<T>)
nameWithType: UniquePtr<T>.implicit operator T*(UniquePtr<T>)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.implicit operator T*(Misaki.HighPerformance.LowLevel.UniquePtr<T>)
type: Operator
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: op_Implicit
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 132
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public static implicit operator T*(UniquePtr<T> ptr)
parameters:
- id: ptr
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
return:
type: '{T}*'
content.vb: Public Shared Widening Operator CType(ptr As UniquePtr(Of T)) As T*
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit*
nameWithType.vb: UniquePtr(Of T).CType(UniquePtr(Of T))
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).CType(Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: CType(UniquePtr(Of T))
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.UniquePtr{`0}
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.UniquePtr{`0}
id: op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.UniquePtr{`0}
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: implicit operator UniquePtr<T>(T*)
nameWithType: UniquePtr<T>.implicit operator UniquePtr<T>(T*)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.implicit operator Misaki.HighPerformance.LowLevel.UniquePtr<T>(T*)
type: Operator
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: op_Implicit
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 138
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public static implicit operator UniquePtr<T>(T* value)
parameters:
- id: value
type: '{T}*'
return:
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
content.vb: Public Shared Widening Operator CType(value As T*) As UniquePtr(Of T)
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit*
nameWithType.vb: UniquePtr(Of T).CType(T*)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).CType(T*)
name.vb: CType(T*)
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
id: op_Equality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: operator ==(UniquePtr<T>, UniquePtr<T>)
nameWithType: UniquePtr<T>.operator ==(UniquePtr<T>, UniquePtr<T>)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.operator ==(Misaki.HighPerformance.LowLevel.UniquePtr<T>, Misaki.HighPerformance.LowLevel.UniquePtr<T>)
type: Operator
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: op_Equality
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 144
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public static bool operator ==(UniquePtr<T> left, UniquePtr<T> right)
parameters:
- id: left
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
- id: right
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
return:
type: System.Boolean
content.vb: Public Shared Operator =(left As UniquePtr(Of T), right As UniquePtr(Of T)) As Boolean
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality*
nameWithType.vb: UniquePtr(Of T).=(UniquePtr(Of T), UniquePtr(Of T))
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).=(Misaki.HighPerformance.LowLevel.UniquePtr(Of T), Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: =(UniquePtr(Of T), UniquePtr(Of T))
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
commentId: M:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
id: op_Inequality(Misaki.HighPerformance.LowLevel.UniquePtr{`0},Misaki.HighPerformance.LowLevel.UniquePtr{`0})
parent: Misaki.HighPerformance.LowLevel.UniquePtr`1
langs:
- csharp
- vb
name: operator !=(UniquePtr<T>, UniquePtr<T>)
nameWithType: UniquePtr<T>.operator !=(UniquePtr<T>, UniquePtr<T>)
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.operator !=(Misaki.HighPerformance.LowLevel.UniquePtr<T>, Misaki.HighPerformance.LowLevel.UniquePtr<T>)
type: Operator
source:
remote:
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: op_Inequality
path: src/Misaki.HighPerformance.LowLevel/Ptr.cs
startLine: 149
assemblies:
- Misaki.HighPerformance.LowLevel
namespace: Misaki.HighPerformance.LowLevel
syntax:
content: public static bool operator !=(UniquePtr<T> left, UniquePtr<T> right)
parameters:
- id: left
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
- id: right
type: Misaki.HighPerformance.LowLevel.UniquePtr`1
return:
type: System.Boolean
content.vb: Public Shared Operator <>(left As UniquePtr(Of T), right As UniquePtr(Of T)) As Boolean
overload: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality*
nameWithType.vb: UniquePtr(Of T).<>(UniquePtr(Of T), UniquePtr(Of T))
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).<>(Misaki.HighPerformance.LowLevel.UniquePtr(Of T), Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: <>(UniquePtr(Of T), UniquePtr(Of T))
references:
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
commentId: T:Misaki.HighPerformance.LowLevel.UniquePtr`1
parent: Misaki.HighPerformance.LowLevel
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
name: UniquePtr<T>
nameWithType: UniquePtr<T>
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>
nameWithType.vb: UniquePtr(Of T)
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T)
name.vb: UniquePtr(Of T)
spec.csharp:
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.LowLevel
commentId: N:Misaki.HighPerformance.LowLevel
href: Misaki.html
name: Misaki.HighPerformance.LowLevel
nameWithType: Misaki.HighPerformance.LowLevel
fullName: Misaki.HighPerformance.LowLevel
spec.csharp:
- uid: Misaki
name: Misaki
href: Misaki.html
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
href: Misaki.HighPerformance.html
- name: .
- uid: Misaki.HighPerformance.LowLevel
name: LowLevel
href: Misaki.HighPerformance.LowLevel.html
spec.vb:
- uid: Misaki
name: Misaki
href: Misaki.html
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
href: Misaki.HighPerformance.html
- name: .
- uid: Misaki.HighPerformance.LowLevel
name: LowLevel
href: Misaki.HighPerformance.LowLevel.html
- uid: System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}
commentId: T:System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}
parent: System
definition: System.IEquatable`1
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
name: IEquatable<UniquePtr<T>>
nameWithType: IEquatable<UniquePtr<T>>
fullName: System.IEquatable<Misaki.HighPerformance.LowLevel.UniquePtr<T>>
nameWithType.vb: IEquatable(Of UniquePtr(Of T))
fullName.vb: System.IEquatable(Of Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: IEquatable(Of UniquePtr(Of T))
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: <
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: <
- name: T
- name: '>'
- name: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: (
- name: Of
- name: " "
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- uid: System.ValueType.ToString
commentId: M:System.ValueType.ToString
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
name: ToString()
nameWithType: ValueType.ToString()
fullName: System.ValueType.ToString()
spec.csharp:
- uid: System.ValueType.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
- name: (
- name: )
spec.vb:
- uid: System.ValueType.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.IEquatable`1
commentId: T:System.IEquatable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
name: IEquatable<T>
nameWithType: IEquatable<T>
fullName: System.IEquatable<T>
nameWithType.vb: IEquatable(Of T)
fullName.vb: System.IEquatable(Of T)
name.vb: IEquatable(Of T)
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.ValueType
commentId: T:System.ValueType
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype
name: ValueType
nameWithType: ValueType
fullName: System.ValueType
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.#ctor
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1__ctor__0__
name: UniquePtr
nameWithType: UniquePtr<T>.UniquePtr
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.UniquePtr
nameWithType.vb: UniquePtr(Of T).New
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).New
name.vb: New
- uid: '{T}*'
isExternal: true
name: T*
nameWithType: T*
fullName: T*
spec.csharp:
- name: T
- name: '*'
spec.vb:
- name: T
- name: '*'
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Get*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.Get
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_Get
name: Get
nameWithType: UniquePtr<T>.Get
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Get
nameWithType.vb: UniquePtr(Of T).Get
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Get
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.GetRef
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_GetRef
name: GetRef
nameWithType: UniquePtr<T>.GetRef
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.GetRef
nameWithType.vb: UniquePtr(Of T).GetRef
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).GetRef
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: T
name: T
nameWithType: T
fullName: T
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Share*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.Share
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_Share
name: Share
nameWithType: UniquePtr<T>.Share
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Share
nameWithType.vb: UniquePtr(Of T).Share
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Share
- uid: Misaki.HighPerformance.LowLevel.SharedPtr{{T}}
commentId: T:Misaki.HighPerformance.LowLevel.SharedPtr{`0}
parent: Misaki.HighPerformance.LowLevel
definition: Misaki.HighPerformance.LowLevel.SharedPtr`1
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
name: SharedPtr<T>
nameWithType: SharedPtr<T>
fullName: Misaki.HighPerformance.LowLevel.SharedPtr<T>
nameWithType.vb: SharedPtr(Of T)
fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T)
name.vb: SharedPtr(Of T)
spec.csharp:
- uid: Misaki.HighPerformance.LowLevel.SharedPtr`1
name: SharedPtr
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Misaki.HighPerformance.LowLevel.SharedPtr`1
name: SharedPtr
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.LowLevel.SharedPtr`1
commentId: T:Misaki.HighPerformance.LowLevel.SharedPtr`1
parent: Misaki.HighPerformance.LowLevel
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
name: SharedPtr<T>
nameWithType: SharedPtr<T>
fullName: Misaki.HighPerformance.LowLevel.SharedPtr<T>
nameWithType.vb: SharedPtr(Of T)
fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T)
name.vb: SharedPtr(Of T)
spec.csharp:
- uid: Misaki.HighPerformance.LowLevel.SharedPtr`1
name: SharedPtr
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Misaki.HighPerformance.LowLevel.SharedPtr`1
name: SharedPtr
href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.Attach
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_Attach__0__
name: Attach
nameWithType: UniquePtr<T>.Attach
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Attach
nameWithType.vb: UniquePtr(Of T).Attach
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Attach
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.Detach
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_Detach
name: Detach
nameWithType: UniquePtr<T>.Detach
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Detach
nameWithType.vb: UniquePtr(Of T).Detach
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Detach
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.Equals
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_Equals_Misaki_HighPerformance_LowLevel_UniquePtr__0__
name: Equals
nameWithType: UniquePtr<T>.Equals
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.Equals
nameWithType.vb: UniquePtr(Of T).Equals
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).Equals
- uid: System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{{T}})
commentId: M:System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
parent: System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}
definition: System.IEquatable`1.Equals(`0)
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
name: Equals(UniquePtr<T>)
nameWithType: IEquatable<UniquePtr<T>>.Equals(UniquePtr<T>)
fullName: System.IEquatable<Misaki.HighPerformance.LowLevel.UniquePtr<T>>.Equals(Misaki.HighPerformance.LowLevel.UniquePtr<T>)
nameWithType.vb: IEquatable(Of UniquePtr(Of T)).Equals(UniquePtr(Of T))
fullName.vb: System.IEquatable(Of Misaki.HighPerformance.LowLevel.UniquePtr(Of T)).Equals(Misaki.HighPerformance.LowLevel.UniquePtr(Of T))
name.vb: Equals(UniquePtr(Of T))
spec.csharp:
- uid: System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
- name: (
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: <
- name: T
- name: '>'
- name: )
spec.vb:
- uid: System.IEquatable{Misaki.HighPerformance.LowLevel.UniquePtr`1}.Equals(Misaki.HighPerformance.LowLevel.UniquePtr{`0})
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
- name: (
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1
name: UniquePtr
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: System.IEquatable`1.Equals(`0)
commentId: M:System.IEquatable`1.Equals(`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
name: Equals(T)
nameWithType: IEquatable<T>.Equals(T)
fullName: System.IEquatable<T>.Equals(T)
nameWithType.vb: IEquatable(Of T).Equals(T)
fullName.vb: System.IEquatable(Of T).Equals(T)
spec.csharp:
- uid: System.IEquatable`1.Equals(`0)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
- name: (
- name: T
- name: )
spec.vb:
- uid: System.IEquatable`1.Equals(`0)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
- name: (
- name: T
- name: )
- uid: System.ValueType.Equals(System.Object)
commentId: M:System.ValueType.Equals(System.Object)
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
name: Equals(object)
nameWithType: ValueType.Equals(object)
fullName: System.ValueType.Equals(object)
nameWithType.vb: ValueType.Equals(Object)
fullName.vb: System.ValueType.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.ValueType.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.ValueType.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.ValueType.GetHashCode
commentId: M:System.ValueType.GetHashCode
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
name: GetHashCode()
nameWithType: ValueType.GetHashCode()
fullName: System.ValueType.GetHashCode()
spec.csharp:
- uid: System.ValueType.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.ValueType.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
- name: (
- name: )
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.GetHashCode
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_GetHashCode
name: GetHashCode
nameWithType: UniquePtr<T>.GetHashCode
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.GetHashCode
nameWithType.vb: UniquePtr(Of T).GetHashCode
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).GetHashCode
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Implicit
name: implicit operator
nameWithType: UniquePtr<T>.implicit operator
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.implicit operator
nameWithType.vb: UniquePtr(Of T).CType
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).CType
name.vb: CType
spec.csharp:
- name: implicit
- name: " "
- name: operator
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_op_Equality_Misaki_HighPerformance_LowLevel_UniquePtr__0__Misaki_HighPerformance_LowLevel_UniquePtr__0__
name: operator ==
nameWithType: UniquePtr<T>.operator ==
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.operator ==
nameWithType.vb: UniquePtr(Of T).=
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).=
name.vb: =
spec.csharp:
- name: operator
- name: " "
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Equality*
name: ==
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_op_Equality_Misaki_HighPerformance_LowLevel_UniquePtr__0__Misaki_HighPerformance_LowLevel_UniquePtr__0__
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality*
commentId: Overload:Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_op_Inequality_Misaki_HighPerformance_LowLevel_UniquePtr__0__Misaki_HighPerformance_LowLevel_UniquePtr__0__
name: operator !=
nameWithType: UniquePtr<T>.operator !=
fullName: Misaki.HighPerformance.LowLevel.UniquePtr<T>.operator !=
nameWithType.vb: UniquePtr(Of T).<>
fullName.vb: Misaki.HighPerformance.LowLevel.UniquePtr(Of T).<>
name.vb: <>
spec.csharp:
- name: operator
- name: " "
- uid: Misaki.HighPerformance.LowLevel.UniquePtr`1.op_Inequality*
name: '!='
href: Misaki.HighPerformance.LowLevel.UniquePtr-1.html#Misaki_HighPerformance_LowLevel_UniquePtr_1_op_Inequality_Misaki_HighPerformance_LowLevel_UniquePtr__0__Misaki_HighPerformance_LowLevel_UniquePtr__0__