| 123456789101112131415161718192021 |
-
- namespace Yuuna.Contracts.Linq
- {
- using System;
- using System.Collections.Generic;
- using System.Collections.Immutable;
- using System.Text;
- /// <summary>
- /// 表示可轉換為不可變集合物件。
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public interface IImmutable<T>
- {
- /// <summary>
- /// 轉換成不可變清單以使用 Linq 。
- /// </summary>
- /// <returns></returns>
- IImmutableList<T> ToImmutable();
- }
- }
|