Tensor.BitwiseAnd 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 |
|---|---|
| BitwiseAnd<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Voert bitsgewijze en tussen een tensor en scalaire waarde uit. |
| BitwiseAnd<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Voert bitsgewijze en tussen twee tensors uit. |
| BitwiseAnd<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Voert bitsgewijze en tussen twee tensors uit. |
| BitwiseAnd<T>(ReadOnlyTensorSpan<T>, T) |
Voert bitsgewijze en tussen een tensor en scalaire waarde uit. |
BitwiseAnd<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze en tussen een tensor en scalaire waarde uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseAnd(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> BitwiseAnd<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 BitwiseAnd : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseAnd(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 om bitwise en met y.
- y
- T
De scalaire naar bitwise en met x.
- destination
- TensorSpan<T>
De bestemming waar het resultaat van x & y is geschreven.
Retouren
Een verwijzing naar destination.
Uitzonderingen
De vormen van x en destination zijn niet compatibel.
Van toepassing op
BitwiseAnd<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze en tussen twee tensors uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseAnd(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> BitwiseAnd<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 BitwiseAnd : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseAnd(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 om bitwise en met y.
De tensor om bitwise en met x.
- destination
- TensorSpan<T>
De bestemming waar het resultaat van x & y is geschreven.
Retouren
Een verwijzing naar destination.
Uitzonderingen
De vormen van x, yen destination zijn niet compatibel.
Van toepassing op
BitwiseAnd<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze en tussen twee tensors uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseAnd(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> BitwiseAnd<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 BitwiseAnd : 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 BitwiseAnd(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 om bitwise en met y.
De tensor om bitwise en met x.
Retouren
Een nieuwe tensor die het resultaat van x & ybevat.
Uitzonderingen
De vormen van x en y zijn niet compatibel.
Van toepassing op
BitwiseAnd<T>(ReadOnlyTensorSpan<T>, T)
- Bron:
- TensorExtensions.cs
Voert bitsgewijze en tussen een tensor en scalaire waarde uit.
public:
generic <typename T>
where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseAnd(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> BitwiseAnd<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseAnd : 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 BitwiseAnd(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 om bitwise en met y.
- y
- T
De scalaire naar bitwise en met x.
Retouren
Een nieuwe tensor die het resultaat van x & ybevat.