You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

marshal_OrderPreserve_test.toml 593B

1234567891011121314151617181920212223242526272829303132333435363738
  1. title = "TOML Marshal Testing"
  2. [basic_lists]
  3. floats = [12.3,45.6,78.9]
  4. bools = [true,false,true]
  5. dates = [1979-05-27T07:32:00Z,1980-05-27T07:32:00Z]
  6. ints = [8001,8001,8002]
  7. uints = [5002,5003]
  8. strings = ["One","Two","Three"]
  9. [[subdocptrs]]
  10. name = "Second"
  11. [basic_map]
  12. one = "one"
  13. two = "two"
  14. [subdoc]
  15. [subdoc.second]
  16. name = "Second"
  17. [subdoc.first]
  18. name = "First"
  19. [basic]
  20. uint = 5001
  21. bool = true
  22. float = 123.4
  23. int = 5000
  24. string = "Bite me"
  25. date = 1979-05-27T07:32:00Z
  26. [[subdoclist]]
  27. name = "List.First"
  28. [[subdoclist]]
  29. name = "List.Second"