61 lines
2.0 KiB
Ruby
Generated
61 lines
2.0 KiB
Ruby
Generated
# typed: true
|
|
|
|
# DO NOT EDIT MANUALLY
|
|
# This is an autogenerated file for types exported from the `enumerable-statistics` gem.
|
|
# Please instead update this file by running `bin/tapioca gem enumerable-statistics`.
|
|
|
|
|
|
class Array
|
|
include ::Enumerable
|
|
include ::EnumerableStatistics::ArrayExtension
|
|
end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#1
|
|
module EnumerableStatistics; end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/array_ext.rb#2
|
|
module EnumerableStatistics::ArrayExtension
|
|
# source://enumerable-statistics//lib/enumerable_statistics/array_ext.rb#15
|
|
def argmax; end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/array_ext.rb#31
|
|
def argmin; end
|
|
|
|
def find_max; end
|
|
def find_min; end
|
|
end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/histogram.rb#2
|
|
class EnumerableStatistics::Histogram < ::Struct
|
|
# Returns the value of attribute isdensity
|
|
#
|
|
# @return [Object] the current value of isdensity
|
|
def density?; end
|
|
|
|
# Returns the value of attribute edges
|
|
#
|
|
# @return [Object] the current value of edges
|
|
def edge; end
|
|
end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#2
|
|
EnumerableStatistics::VERSION = T.let(T.unsafe(nil), String)
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#4
|
|
module EnumerableStatistics::Version; end
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#6
|
|
EnumerableStatistics::Version::MAJOR = T.let(T.unsafe(nil), Integer)
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#6
|
|
EnumerableStatistics::Version::MICRO = T.let(T.unsafe(nil), Integer)
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#6
|
|
EnumerableStatistics::Version::MINOR = T.let(T.unsafe(nil), Integer)
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#7
|
|
EnumerableStatistics::Version::STRING = T.let(T.unsafe(nil), String)
|
|
|
|
# source://enumerable-statistics//lib/enumerable_statistics/version.rb#5
|
|
EnumerableStatistics::Version::TAG = T.let(T.unsafe(nil), T.untyped)
|