Files
RobustToolbox/Robust.Shared/Toolshed/Commands/Generic/WhereCommand.cs
Leon Friedrich 9af119f57a Toolshed Rejig (#5455)
* 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
2024-12-21 17:49:11 +11:00

28 lines
642 B
C#

using System.Collections.Generic;
using Robust.Shared.Toolshed.Syntax;
namespace Robust.Shared.Toolshed.Commands.Generic;
[ToolshedCommand]
public sealed class WhereCommand : ToolshedCommand
{
[CommandImplementation, TakesPipedTypeAsGeneric]
public IEnumerable<T> Where<T>(
IInvocationContext ctx,
[PipedArgument] IEnumerable<T> input,
Block<T, bool> check
)
{
foreach (var i in input)
{
var res = check.Invoke(i, ctx);
if (ctx.HasErrors)
yield break;
if (res)
yield return i;
}
}
}