catchChecks

Type Check for Function Builders to allow Single item to be
passed in, and determine what to do with the item, ie: need an x value?
function that allows label, line, box, float, or even a string..
check item type? string ? 'str.tonumber(_item)' can be in the same
switch as a 'line.get_price(_item, bar_index)' both outputting float
or for pulling a value from simple, array, or matrix, one function
that can switch between them. reduce overhead of many functions.
there are many ways to use this tool, the simplest may be
string/floats on one switch or grabbing colors from line/fill/label
please Share any great recipes you come up with!
typeIs(_temp, _doMeth)
Input anything..
Determine what it is.
Parameters:
_temp: (any) Matrix, Array, or Simple Item
_doMeth: (bool) True for M/A/S , false for int/float/string.. etc..
Returns: (string) Type of item checked. ('bool' .. or 'array'.. etc..)
Big udate, now logs everything,check a map keys array.. and faster, simpler..
also returns type inf string..
To help anyabsent minded Pine Programmers to find if they've accidentally misconfigured, or other Clever uses .. =)
example logs below
--- Basic Type Checks ---
Detected Type: -- int
Detected Type: -- float
Detected Type: -- color
Detected Type: -- line
Detected Type: -- label
Detected Type: -- box
Detected Type: -- table
Detected Type: -- linefill
Detected Type: -- polyline
Detected Type: -- chart.point
Detected Type: -- label
--- Container Type Checks ---
Detected Type: matrix<color> -- color
Detected Type: matrix<chart.point> -- chart.point
Detected Type: matrix<line> -- line
Detected Type: array<float> -- float
Detected Type: array<bool> -- bool
Detected Type: array<string> -- string
Detected Type: array<polyline> -- polyline
--- Collection Element Type Checks ---
Detected Type: matrix<int> -- matrix
Detected Type: matrix<linefill> -- matrix
Detected Type: matrix<polyline> -- matrix
Detected Type: array<int> -- array
Detected Type: array<float> -- array
--- Map Key Helper Checks ---
Detected Type: array<string> -- string
Map Key Type: string
Detected Type: array<int> -- int
Map Key Type: int
String Map Key Type: string, Int Map Key Type: int
Suggested Next String Key: key_2
Suggested Next Int Key: 6
Suggested Next Int Key: 0
Next String Key: key_2, Next Int Key: 6, Next Int Key (Empty): 0
Added:
getMapKeyType(_keys)
Parameters:
_keys (array<bool>)
getNextMapKey(_keys, _prefix)
Parameters:
_keys (array<string>)
_prefix (string)
Updated:
typeIs(_item, _getContainerType)
Parameters:
_item (matrix<chart.point>)
_getContainerType (bool)
Perpustakaan Pine
Dalam semangat sebenar TradingView, penulis telah menerbitkan kod Pine ini sebagai perpustakaan sumber terbuka supaya pengaturcara Pine lain dari komuniti kami boleh menggunakannya semula. Sorakan kepada penulis! Anda juga boleh menggunakan perpustakaan ini secara peribadi atau dalam penerbitan sumber terbuka lain, tetapi penggunaan semula kod ini dalam penerbitan adalah tertakluk kepada Peraturan Dalaman.
Penafian
Perpustakaan Pine
Dalam semangat sebenar TradingView, penulis telah menerbitkan kod Pine ini sebagai perpustakaan sumber terbuka supaya pengaturcara Pine lain dari komuniti kami boleh menggunakannya semula. Sorakan kepada penulis! Anda juga boleh menggunakan perpustakaan ini secara peribadi atau dalam penerbitan sumber terbuka lain, tetapi penggunaan semula kod ini dalam penerbitan adalah tertakluk kepada Peraturan Dalaman.