namespace Yuuna.Contracts.Linq { using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Text; /// /// 表示可轉換為不可變集合物件。 /// /// public interface IImmutable { /// /// 轉換成不可變清單以使用 Linq 。 /// /// IImmutableList ToImmutable(); } }