Sha256: 5c0b279f0e9bc8993de0d02a26be8f38488f321d663194609ab7713269871c1a
Contents?: true
Size: 447 Bytes
Versions: 281
Compression:
Stored size: 447 Bytes
Contents
using System; using System.Collections.Generic; public class SgfTree { public SgfTree(IDictionary<string, string[]> data, params SgfTree[] children) { Data = data; Children = children; } public IDictionary<string, string[]> Data { get; } public SgfTree[] Children { get; } } public class SgfParser { public static SgfTree ParseTree(string input) { throw new NotImplementedException(); } }
Version data entries
281 entries across 281 versions & 1 rubygems