Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个列表,其中包含很多元素,ocaml我想看看里面有什么,但ocaml只向我展示了其中的一小部分,如下所示[e1,e2,e3;...]:如何配置ocaml以显示所有内容?
ocaml
[e1,e2,e3;...]
您可以交互地看到更长更深的结构,#print_length与#print_depth
#print_length
#print_depth
# #print_depth 0;; # [1;2;3;4];; - : int list = [...] # #print_depth 1;; # [[1];[2];[3];[4]];; - : int list list = [[...]; [...]; [...]; [...]] # #print_length 3;; # [1;2;3;4];; - : int list = [1; 2; ...]