Sha256: 3c200c408d8e811bc2ce1d50c365a50462b8e62bef924d8463ebb5a161a45fe8
Contents?: true
Size: 298 Bytes
Versions: 114
Compression:
Stored size: 298 Bytes
Contents
using System.Collections.Generic; public class SgfTree { public IDictionary<string, string[]> Data { get; } public SgfTree[] Children { get; } public SgfTree(IDictionary<string, string[]> data, params SgfTree[] children) { Data = data; Children = children; } }
Version data entries
114 entries across 114 versions & 1 rubygems