Ejemplo n.º 1
0
 public void SetItem(SqlRange value, SqlInt32 index)
 {
     if (!index.IsNull)
     {
         _array[index.Value] = !value.IsNull ? value.Value : default(Range?);
     }
 }
Ejemplo n.º 2
0
 public void SetDimItem(SqlRange value, SqlInt32Array indices)
 {
     if (!indices.IsNull)
     {
         _arrayInfo.SetValue <Range?>(_array, !value.IsNull ? value.Value : default(Range?), indices.Array.Enumerate(0, indices.Length.Value).Select(t => t.Value).ToArray());
     }
 }
Ejemplo n.º 3
0
 public void Accumulate(SqlRange input)
 {
     if (_list != null)
     {
         _list.Add(!input.IsNull ? input.Value : default(Range?));
     }
 }
Ejemplo n.º 4
0
        public void FillRange(SqlRange value, SqlInt32 index, SqlInt32 count)
        {
            int indexValue = !index.IsNull ? index.Value : count.IsNull ? 0 : _array.Length - count.Value;
            int countValue = !count.IsNull ? count.Value : index.IsNull ? 0 : _array.Length - index.Value;

            _array.Fill(!value.IsNull ? value.Value : default(Range?), indexValue, countValue);
        }
Ejemplo n.º 5
0
        public void SetRepeat(SqlInt32 index, SqlRange value, SqlInt32 count)
        {
            int indexValue = !index.IsNull ? index.Value : count.IsNull ? 0 : _list.Count - count.Value;
            int countValue = !count.IsNull ? count.Value : index.IsNull ? 0 : _list.Count - index.Value;

            _list.SetRepeat(indexValue, value.IsNull ? default(Range?) : value.Value, countValue);
        }
Ejemplo n.º 6
0
 public void SetFlatItem(SqlRange value, SqlInt32 index)
 {
     if (!index.IsNull)
     {
         new ArrayIndex(_arrayInfo)
         {
             FlatIndex = index.Value
         }
     }
Ejemplo n.º 7
0
        public void AddRepeat(SqlRange value, SqlInt32 count)
        {
            if (count.IsNull)
            {
                return;
            }

            _list.AddRepeat(value.IsNull ? default(Range?) : value.Value, count.Value);
        }
Ejemplo n.º 8
0
        public void SetItem(SqlInt32 index, SqlRange value)
        {
            if (index.IsNull)
            {
                return;
            }

            _list[index.Value] = value.IsNull ? default(Range?) : value.Value;
        }
Ejemplo n.º 9
0
        public void InsertRepeat(SqlInt32 index, SqlRange value, SqlInt32 count)
        {
            if (count.IsNull)
            {
                return;
            }

            int indexValue = !index.IsNull ? index.Value : _list.Count;

            _list.InsertRepeat(indexValue, value.IsNull ? default(Range?) : value.Value, count.Value);
        }
Ejemplo n.º 10
0
        public static SqlRangeRegularArray Parse(SqlString s)
        {
            if (s.IsNull)
            {
                return(Null);
            }

            return(new SqlRangeRegularArray(SqlFormatting.ParseRegular <Range?>(s.Value,
                                                                                t => !t.Equals(SqlFormatting.NullText, StringComparison.InvariantCultureIgnoreCase) ? SqlRange.Parse(t).Value : default(Range?))));
        }
Ejemplo n.º 11
0
 public void RemoveItem(SqlRange value)
 {
     _list.Remove(value.IsNull ? default(Range?) : value.Value);
 }
Ejemplo n.º 12
0
 public void InsertItem(SqlInt32 index, SqlRange value)
 {
     _list.Insert(index.IsNull ? _list.Count : index.Value, value.IsNull ? default(Range?) : value.Value);
 }
Ejemplo n.º 13
0
 public void AddItem(SqlRange value)
 {
     _list.Add(value.IsNull ? default(Range?) : value.Value);
 }