조용한 담장

Dart 2.5 본문

Dart

Dart 2.5

iosroid 2019. 9. 11. 17:35

원문 : Announcing Dart 2.5

ML Complete

code completion 에 machine learning 기술이 적용된다.

GitHub 의 Dart Code 들을 기반으로 개발한 ML model 이 개발자의 다음 코드 심볼을 추측해서 제안한다.

예제로 보면 변수 이름 var now 를 보고 DateTime.now()를 제안한다.

Dart analyzer 에 포함된 기능이기 때문에 개발툴이나 에디터에 상관없이 사용할 수 있다.

dart:ffi foreign function interface for Dart-C interop

C interop using dart:ffi

dart:ffi를 통해 C 코드나 C 코드 기반의 라이브러리나 프로그램들을 호출할 수 있다.

예제로 C 함수인 system() 을 호출하는 코드가 있다.

TensorFlow Lite를 사용하는 예제도 있다.

Improved support for constant expressions

support many more ways to define constant expressions, including the ability to use casts and the new control flow and collection spread features shipped in Dart 2.3.

'Dart' 카테고리의 다른 글

Dart : Exceptions  (0) 2019.09.20
Dart : Control flow statements  (0) 2019.09.17
Dart : Operators  (0) 2019.09.17
Dart : Functions  (1) 2019.08.07
Dart : Variables  (0) 2019.08.05
Comments