class LinearHistogram
    Defined at line 183 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
    Functions
    
      LinearHistogram<T>
      public void LinearHistogram<T>()
      Defined at line 187 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      
        
           Create a default histogram. Operations on the metric will have no effect.
         
       
      LinearHistogram<T>
      public void LinearHistogram<T>(const LinearHistogram<T> & other)
      Defined at line 190 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      
        
           Movable but not copyable.
         
       
      LinearHistogram<T>
      public void LinearHistogram<T>(LinearHistogram<T> && other)
      Defined at line 191 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      operator=
      public LinearHistogram<T> & operator=(const LinearHistogram<T> & other)
      Defined at line 192 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      operator=
      public LinearHistogram<T> & operator=(LinearHistogram<T> && other)
      Defined at line 193 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      Insert
      public void Insert(T value)
      Defined at line 196 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      
        
           Insert the given value once to the correct bucket of the histogram.
         
       
      Insert
      public void Insert(T value, T count)
      Defined at line 200 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
      
        
           Insert the given value |count| times to the correct bucket of the histogram.