Scala alias for Skip
Namespace: Akka.Util.InternalAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static IEnumerable<T> Drop<T>(
this IEnumerable<T> self,
int count
)
<ExtensionAttribute>
Public Shared Function Drop(Of T) (
self As IEnumerable(Of T),
count As Integer
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ Drop(
IEnumerable<T>^ self,
int count
)
[<ExtensionAttribute>]
static member Drop :
self : IEnumerable<'T> *
count : int -> IEnumerable<'T>
Parameters
- self
- Type: System.Collections.GenericIEnumerableT
[Missing <param name="self"/> documentation for "M:Akka.Util.Internal.Extensions.Drop``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]
- count
- Type: SystemInt32
[Missing <param name="count"/> documentation for "M:Akka.Util.Internal.Extensions.Drop``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Akka.Util.Internal.Extensions.Drop``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]
Return Value
Type:
IEnumerableT[Missing <returns> documentation for "M:Akka.Util.Internal.Extensions.Drop``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also