コード例 #1
0
		public static AnalysisState Insert(
			this AnalysisState self , IPSResultData data , int idx )
		{
			self.State [ idx ] = data;
			return self;
		}
コード例 #2
0
		public static AnalysisState Add( AnalysisState state , IPSResultData data , int idx )
			=> state.Map( SetAction( true ) )
					.Map( SetTarget( idx ) );