-
Notifications
You must be signed in to change notification settings - Fork 36
T_CodeJam_Collections_CollectionExtensions
andrewvk edited this page Jun 23, 2016
·
7 revisions
Various collections extensions.
System.Object
CodeJam.Collections.CollectionExtensions
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public static class CollectionExtensions
VB
<ExtensionAttribute>
Public NotInheritable Class CollectionExtensions
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type CollectionExtensions = class end
Name | Description | |
---|---|---|
![]() ![]() |
AddRange(T)(ICollection(T), IEnumerable(T)) | Adds the elements to the end of the ICollection(T). |
![]() ![]() |
AddRange(T)(ICollection(T), IList(T)) | Adds the elements to the end of the ICollection(T). |
![]() ![]() |
AddRange(T)(ICollection(T), T[]) | Adds the elements to the end of the ICollection(T). |
![]() ![]() |
IsNullOrEmpty(T)(ICollection(T)) |
Indicates whether the specified collection is null or empty. |
![]() ![]() |
IsNullOrEmpty(T)(T[]) |
Indicates whether the specified array is null or empty. |
![]() ![]() |
NotNullNorEmpty(T)(ICollection(T)) | Indicates whether the specified collection is not null nor empty. |
![]() ![]() |
NotNullNorEmpty(T)(T[]) | Indicates whether the specified array is is not null nor empty. |