| CargoFunctionsHoldsLikeT Method |
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Cargo.LinqAssembly: WikiClientLibrary.Cargo (in WikiClientLibrary.Cargo.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public static bool HoldsLike<T>(
IEnumerable<T> cargoList,
string pattern
)
Public Shared Function HoldsLike(Of T) (
cargoList As IEnumerable(Of T),
pattern As String
) As Boolean
Dim cargoList As IEnumerable(Of T)
Dim pattern As String
Dim returnValue As Boolean
returnValue = CargoFunctions.HoldsLike(cargoList,
pattern)
public:
generic<typename T>
static bool HoldsLike(
IEnumerable<T>^ cargoList,
String^ pattern
)
static member HoldsLike :
cargoList : IEnumerable<'T> *
pattern : string -> bool
Parameters
- cargoList IEnumerableT
- Cargo table field expression of type list.
- pattern String
- the matching pattern with % or _ wildcard.
Type Parameters
- T
- element name.
Return Value
Booleanwhether the list contains the matching element.
See Also