Guest User

Untitled

a guest
Feb 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. # find returns a list of entities of type @Entity passing the filter determined by $filter
  2. function std::find
  3.  
  4. types {
  5. @Entity = entity
  6. }
  7.  
  8. parameters {
  9. # Determines the filtering condition
  10. $filter function(@Entity) Bool
  11.  
  12. # Determines the maximum number of instances to return
  13. $limit Uint32
  14. }
  15.  
  16. # Returns an empty list if no entities passed the filter
  17. value []@Entity
Add Comment
Please, Sign In to add comment