v2 / vlib / v / tests / builtin_arrays / array_nested_call_test.v
6 lines · 6 sloc · 159 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_array_nested_call() {
2 arr := ['abc', 'def']
3 all_is_letter := arr.all(it.bytes().all(it.is_letter()))
4 println(all_is_letter)
5 assert all_is_letter
6}
7