Sha256: 894cb930a7ab7cc4d984c1692a661572656a2297a9ef39d950826bd5eb30ecb8
Contents?: true
Size: 719 Bytes
Versions: 1
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true # Copyright 2019 OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module SDK # @api private # # Internal contains helpers used by the reference implementation. module Internal extend self def boolean?(value) value.is_a?(TrueClass) || value.is_a?(FalseClass) end def valid_key?(key) key.instance_of?(String) end def valid_value?(value) value.instance_of?(String) || value == false || value == true || value.is_a?(Numeric) end def valid_attributes?(attrs) attrs.nil? || attrs.all? { |k, v| valid_key?(k) && valid_value?(v) } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-sdk-0.2.0 | lib/opentelemetry/sdk/internal.rb |