Skip to content

Instantly share code, notes, and snippets.

@amacal
Created April 20, 2021 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amacal/ca35c06bc3dcead24890cf5f38334388 to your computer and use it in GitHub Desktop.
Save amacal/ca35c06bc3dcead24890cf5f38334388 to your computer and use it in GitHub Desktop.
public class InFile
{
public ValueBuilder Builder();
}
public class ValueBuilder
{
public bool IsEmpty();
public int Insert(byte[] data);
public ValueFile Flush();
}
public class ValueFile
{
public byte[] Extract(ValueReference reference);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment