mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 19:18:01 +02:00
11 lines
No EOL
182 B
Beef
11 lines
No EOL
182 B
Beef
namespace System;
|
|
|
|
interface IParseable<T>
|
|
{
|
|
public static Result<T> Parse(StringView val);
|
|
}
|
|
|
|
interface IParseable<T, TErr>
|
|
{
|
|
public static Result<T,TErr> Parse(StringView val);
|
|
} |