Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 363 Bytes

NEWS.md

File metadata and controls

23 lines (19 loc) · 363 Bytes

ask 0.0.2

New Features

  1. Support type checking

    5 ? chr
  2. Support type conversion

    5 ?~ chr
    5 ? ""
  3. Scalar and vectorized if-else. The OpenMP back-end ensures scalable ops.

    TRUE ? 1
    FALSE ? 1 ~ 2
    FALSE ?~ 2
    
    c(TRUE, FALSE, NA) ? 1 ~ 2
    c(TRUE, FALSE, NA) ? 1:3 ~ 7:9