Advertisement
pharmokan

programming brainstorm

Apr 18th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. types
  2. ---
  3. array
  4. object
  5. number
  6. string
  7.  
  8. in a collection we
  9. ---
  10. find
  11. read/analyze
  12. remove
  13. add
  14.  
  15. find/get where
  16. ---
  17. index
  18. value
  19. object key
  20. object value
  21. string
  22. number
  23.  
  24.  
  25. calculated answers
  26. ---
  27. biggest
  28. smallest
  29. last
  30. first
  31. average
  32. sum
  33.  
  34. bool answers/checks
  35. ---
  36. is
  37. is not
  38. is in
  39. is not in
  40. has / contains / includes / matches
  41. does not have / does not contain
  42. is set/exists/is not empty/undefined/null
  43. is empty/is not set/doesnt exist
  44.  
  45. action functions
  46. ---
  47. merge/concat
  48. find/match
  49. combine
  50. remove
  51. copy/clone
  52. store
  53. replace
  54. reverse
  55. swap
  56.  
  57. filters
  58. ---
  59. unique
  60. duplicates
  61. with/append/attach
  62. without/exclude/filter
  63.  
  64.  
  65. array funcs
  66. ---
  67. filter
  68. remove
  69. add/push
  70. has / contains / includes / matches
  71. is set/exists/is not empty/undefined/null
  72. all calculated answers
  73. does not have / does not contain
  74. is empty/is not set/doesnt exist
  75. get where
  76.  
  77.  
  78. object funcs
  79. ---
  80. has key
  81. has value where key is
  82. set
  83.  
  84. number funcs
  85. ---
  86. math
  87. isin
  88.  
  89.  
  90. string funcs
  91. ---
  92. isin
  93. replace
  94. find/match
  95.  
  96.  
  97. ==========================================================
  98. entire array funcs
  99. ---
  100. merge with
  101. combine
  102. sort
  103. filter out all
  104. filter out where
  105. get all where
  106. remove all where
  107. ___
  108. with: a value/func, another array
  109.  
  110.  
  111. entire obj funcs
  112. --
  113. merge with
  114. get all keys
  115. get all values
  116. ___
  117. with: a value/func, another object
  118.  
  119.  
  120. array + obj singular operations
  121. ---
  122. get / find
  123. remove / delete
  124. push / add
  125. replace / change
  126. has / exists
  127.  
  128. isempty
  129. isset
  130. isin
  131. has
  132. getallwherev
  133. removeallwhereval
  134. removewhere
  135. is
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement