mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 19:48:01 +02:00
11 lines
182 B
Beef
11 lines
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);
|
||
|
}
|