Published - Added Mapping shortcut,
added leveled limits, container bug fix,
This commit is contained in:
@ -3,7 +3,13 @@ namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
||||
public interface IItem
|
||||
{ // ...
|
||||
|
||||
string TestStatic_GetWrongYearFlag(bool? isWrongYear);
|
||||
string TestStatic_GetWrongYearFlag(bool? isWrongYear) =>
|
||||
GetWrongYearFlag(isWrongYear);
|
||||
static string GetWrongYearFlag(bool? isWrongYear) => isWrongYear is null ? "#" : isWrongYear.Value ? "~" : "=";
|
||||
|
||||
(List<Models.Item>, int) TestStatic_GetMerged(List<Models.Item> itemsA, List<Models.Item> itemsB) =>
|
||||
GetMerged(itemsA, itemsB);
|
||||
static (List<Models.Item>, int) GetMerged(List<Models.Item> itemsA, List<Models.Item> itemsB) =>
|
||||
Item.GetMerged(itemsA, itemsB);
|
||||
|
||||
}
|
Reference in New Issue
Block a user