using System.Collections.Generic; using System.Linq; namespace Robust.Shared.Toolshed.Commands.Generic; [ToolshedCommand] public sealed class FirstCommand : ToolshedCommand { [CommandImplementation, TakesPipedTypeAsGeneric] public T First([PipedArgument] IEnumerable input) => input.First(); }