mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Toolshed Rejig * shorten hint string * Try fix conflicts. Ill make with work later * bodge * Fix ProtoIdTypeParser assert * comment * AllEntities * Remove more linq from WhereCommand * better help strings * Add ContainsCommand * loc strings * Add contains command description * Add $self variable * Errors for writing to readonly variables * A
24 lines
736 B
C#
24 lines
736 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Robust.Shared.Toolshed.Syntax;
|
|
using Robust.Shared.Toolshed.TypeParsers;
|
|
|
|
namespace Robust.Shared.Toolshed.Commands.Generic.Ordering;
|
|
|
|
[ToolshedCommand]
|
|
public sealed class SortDownByCommand : ToolshedCommand
|
|
{
|
|
private static Type[] _parsers = [typeof(MapBlockOutputParser)];
|
|
public override Type[] TypeParameterParsers => _parsers;
|
|
|
|
[CommandImplementation, TakesPipedTypeAsGeneric]
|
|
public IEnumerable<T> SortBy<TOrd, T>(
|
|
IInvocationContext ctx,
|
|
[PipedArgument] IEnumerable<T> input,
|
|
Block<T, TOrd> orderer
|
|
)
|
|
where TOrd : IComparable<TOrd>
|
|
=> input.OrderByDescending(x => orderer.Invoke(x, ctx)!);
|
|
}
|