Besonderhede van voorbeeld: 8610228487554300015

Metadata

Data

English[en]
In Elixir the abstract syntax tree (AST), the internal representation of our code, is comprised of tuples. These tuples contain three parts: function name, metadata, and function arguments. In order to see these internal structures, Elixir supplies us with the quote/2 function.
Korean[ko]
Elixir 코드는 내부적으로 추상 문법 트리(Abstract Syntax Tree, AST)로 표현하는데, 이는 함수 이름과 메타 데이터, 함수의 인자를 포함하는 튜플로 이루어져 있습니다. 이러한 내부 구조를 확인하기 위해서 Elixir는 quote/2 함수를 제공합니다. quote/2 를 사용해서 Elixir의 코드의 기저에 있는 표현식으로 변환할 수 있습니다.

History

Your action: