Facebook
From Coral Baboon, 5 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 224
  1. class AnimalCollection< TAnimal extends IAnimal >
  2. {
  3.     private itemArray: Array< TAnimal >;
  4.    
  5.     constructor() {
  6.         this.itemArray = [];
  7.     }
  8.    
  9.     FeedAll() {
  10.         this.itemArray.forEach(
  11.             (item) => item.Feed()
  12.         );                  
  13.     }      
  14. }