mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02: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
40 lines
800 B
C#
40 lines
800 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Robust.Shared.Toolshed.Commands.Math;
|
|
|
|
[ToolshedCommand]
|
|
public sealed class JoinCommand : ToolshedCommand
|
|
{
|
|
[CommandImplementation]
|
|
public string Join(
|
|
[PipedArgument] string x,
|
|
string y
|
|
)
|
|
{
|
|
return x + y;
|
|
}
|
|
|
|
[CommandImplementation, TakesPipedTypeAsGeneric]
|
|
public IEnumerable<T> Join<T>(
|
|
[PipedArgument] IEnumerable<T> x,
|
|
IEnumerable<T> y
|
|
)
|
|
{
|
|
return x.Concat(y);
|
|
}
|
|
}
|
|
|
|
[ToolshedCommand]
|
|
public sealed class AppendCommand : ToolshedCommand
|
|
{
|
|
[CommandImplementation, TakesPipedTypeAsGeneric]
|
|
public IEnumerable<T> Append<T>(
|
|
[PipedArgument] IEnumerable<T> x,
|
|
T y
|
|
)
|
|
{
|
|
return x.Append(y);
|
|
}
|
|
}
|