This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | type CompareFn<T> = (a: T, b: T) => number; | |
| class BinaryHeap<T> { | |
| array: T[]; | |
| compareFn: CompareFn<T>; | |
| constructor(compareFn: CompareFn<T>) { | |
| this.compareFn = compareFn; | |
| this.array = []; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { | |
| ModuleWithProviders, | |
| NgModule, | |
| Optional, | |
| SkipSelf | |
| } from '@angular/core'; | |
| import { File } from '@ionic-native/file'; | |
| import { HTTP } from '@ionic-native/http'; | |
| import { ImageCacheService } from './image-cache.service'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { Cordova, Plugin } from 'ionic-native'; | |
| import { Observable } from 'rxjs/Observable'; | |
| export interface DnssdRecord { | |
| action: string; | |
| service: BonjourService; | |
| } | |
| export interface BonjourService { | |
| domain: string; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.hitachi.smartac.widget; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.LinearLayout; | |
| import android.widget.RadioGroup; | |
| /** |