Tensor.BitwiseOr Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Voert bitsgewijze of tussen twee tensors uit. |
| BitwiseOr<T>(ReadOnlyTensorSpan<T>, T) |
Hiermee wordt bitwise of tussen een tensor en scalaire waarde uitgevoerd. |
| BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Voert bitsgewijze of tussen twee tensors uit. |
| BitwiseOr<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Hiermee wordt bitwise of tussen een tensor en scalaire waarde uitgevoerd. |
BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze of tussen twee tensors uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> BitwiseOr<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Type parameters
- T
Het type elementen in de tensor.
Parameters
De tensor naar bitwise of met y.
De tensor naar bitwise of met x.
Retouren
Een nieuwe tensor die het resultaat van x | y.
Uitzonderingen
De vormen van x en y zijn niet compatibel.
Van toepassing op
BitwiseOr<T>(ReadOnlyTensorSpan<T>, T)
- Bron:
- TensorExtensions.cs
Hiermee wordt bitwise of tussen een tensor en scalaire waarde uitgevoerd.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> BitwiseOr<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)
Type parameters
- T
Het type elementen in de tensor.
Parameters
De tensor naar bitwise of met y.
- y
- T
De scalaire naar bitwise of met x.
Retouren
Een nieuwe tensor die het resultaat van x | y.
Van toepassing op
BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze of tussen twee tensors uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> BitwiseOr<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Het type elementen in de tensor.
Parameters
De tensor naar bitwise of met y.
De tensor naar bitwise of met x.
- destination
- TensorSpan<T>
De bestemming waar het resultaat x | y is geschreven.
Retouren
Een verwijzing naar destination.
Uitzonderingen
De vormen van x, yen destination zijn niet compatibel.
Van toepassing op
BitwiseOr<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Bron:
- TensorExtensions.cs
Hiermee wordt bitwise of tussen een tensor en scalaire waarde uitgevoerd.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> BitwiseOr<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type parameters
- T
Het type elementen in de tensor.
Parameters
De tensor naar bitwise of met y.
- y
- T
De scalaire naar bitwise of met x.
- destination
- TensorSpan<T>
De bestemming waar het resultaat x | y is geschreven.
Retouren
Een verwijzing naar destination.
Uitzonderingen
De vormen van x en destination zijn niet compatibel.