2110 shaares
  
  
6 private links
6 private links
        1 result
        
        
          
          tagged
          
              
                
                  dispatch
                
              
          
        
        
        
      
    union CellValue {
    tag: TaggedPtr<Aligned, 2>,
    num: Decimal,
    str: ManuallyDrop<ThinVec<u8>>,
    formula: ManuallyDrop<Rc<Formula>>,
    iter: ManuallyDrop<Box<dyn Iterator<Item = CellValue>>>,
}