ATS
  • Type-safe Pointers in ATS

    by Vanessa McHale | ATS

    Compared with Rust, ATS provides better type safety at the boundaries; foreign functions and data structures can be used in a first-class way without sacrificing type safety.

  • ATS As a Systems Programming Language

    by Vanessa McHale | ATS

    You may have seen the Some Were Meant for C polemic; I do not agree with it completely but I encourage you to read it if you have not. Here, I give some comments on ATS and Rust in light of it.

  • Using Templates in ATS

    by Vanessa McHale | ATS

    ATS is known for its sophisticated type system, but it also has a template system that has been the focus of recent work. Rather than going into technical details or comparing templates to other forms of generic programming, I wanted to give an example.

  • For Loops and GCC vs. Hand-optimized Rust

    by Vanessa McHale | ATS

    Suppose we want to count the number of lines in a file. Rust has a crate that would seem to help us, namely, bytecount.

  • Performance Implications of FP in ATS

    by Vanessa McHale | ATS

    Here I would like to present benchmarks associated with my past post comparing different methods of summing the first \( n \) numbers. In each case, we benchmarked sum(200), that is, \( \sum_{i=1}^{200} i \).