1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 19:48:01 +02:00
Beef/BeefLibs/corlib/src/IParseable.bf

11 lines
182 B
Beef
Raw Normal View History

namespace System;
interface IParseable<T>
{
public static Result<T> Parse(StringView val);
}
interface IParseable<T, TErr>
{
public static Result<T,TErr> Parse(StringView val);
}