示例#1
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TSource1>(IList <TSource1> a, RamdaPlaceholder b = null)
 {
     return(Currying.Concat(a, b));
 }
示例#2
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat(RamdaPlaceholder a = null, RamdaPlaceholder b = null)
 {
     return(Currying.Concat(a, b));
 }
示例#3
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TSource1, TSource2>(IList <TSource1> a, IList <TSource2> b)
 {
     return(Currying.Concat(a, b));
 }
示例#4
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TSource2>(RamdaPlaceholder a, IList <TSource2> b)
 {
     return(Currying.Concat(a, b));
 }
示例#5
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat(RamdaPlaceholder a, string b)
 {
     return(Currying.Concat(a, b));
 }
示例#6
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat(string a, string b)
 {
     return(Currying.Concat(a, b));
 }
示例#7
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TTarget1>(TTarget1 a, RamdaPlaceholder b = null)
 {
     return(Currying.Concat(a, b));
 }
示例#8
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TTarget2>(RamdaPlaceholder a, TTarget2 b)
 {
     return(Currying.Concat(a, b));
 }
示例#9
0
 /// <summary>
 /// Returns the result of concatenating the given lists or strings.Note: `R.concat` expects both arguments to be of the same type,unlike the native `Array.prototype.concat` method. It will throwan error if you `concat` an Array with a non-Array value.Dispatches to the `concat` method of the first argument, if present.
 /// <para />
 /// sig: [a] -> [a] -> [a]
 /// </summary>
 /// <param name="firstList">The first list</param>
 /// <param name="secondList">The second list</param>
 /// <returns>A list consisting of the elements of `firstList` followed by the elements of`secondList`.</returns>
 public static dynamic Concat <TTarget1, TTarget2>(TTarget1 a, TTarget2 b)
 {
     return(Currying.Concat(a, b));
 }