Sha256: 50c5316c9c2e0fbb787e80ca28fb98ee4e85129895392653c9a8b91b4e3b7b84

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

module Arrow
  class BinaryArrayBuilder
    def append_values(values, is_valids=nil)
      if is_valids
        is_valids.each_with_index do |is_valid, i|
          if is_valid
            append_value(values[i])
          else
            append_null
          end
        end
      else
        values.each do |value|
          append_value(value)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
red-arrow-0.15.1 lib/arrow/binary-array-builder.rb
red-arrow-0.15.0 lib/arrow/binary-array-builder.rb
red-arrow-0.14.1 lib/arrow/binary-array-builder.rb
red-arrow-0.14.0 lib/arrow/binary-array-builder.rb
red-arrow-0.13.0 lib/arrow/binary-array-builder.rb