Sha256: dc816b0ea5b5936ce1adb985b18ca3f570f72dd02ac6572733db72f0f2424fc7
Contents?: true
Size: 486 Bytes
Versions: 66
Compression:
Stored size: 486 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require_relative '../base_type' module GoodData module LCM2 module Type class IntegerType < BaseType CATEGORY = :scalar INTERNAL_TYPE = Integer def check(value) value.is_number? end end end end end
Version data entries
66 entries across 66 versions & 1 rubygems