comparison runtime/doc/vim9.txt @ 19646:847a300aa244

Update runtime files Commit: https://github.com/vim/vim/commit/b17893aa940dc7d45421f875f5d90855880aad27 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 14 08:19:51 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Mar 2020 08:30:08 +0100
parents d4deb2e50667
children bd4f91762d0f
comparison
equal deleted inserted replaced
19645:c4e27eead327 19646:847a300aa244
1 *vim9.txt* For Vim version 8.2. Last change: 2020 Feb 29 1 *vim9.txt* For Vim version 8.2. Last change: 2020 Mar 01
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
211 float non-zero 211 float non-zero
212 string non-empty 212 string non-empty
213 blob non-empty 213 blob non-empty
214 list non-empty (different from JavaScript) 214 list non-empty (different from JavaScript)
215 dictionary non-empty (different from JavaScript) 215 dictionary non-empty (different from JavaScript)
216 funcref when not NULL 216 func when not NULL
217 partial when not NULL 217 partial when not NULL
218 special v:true 218 special v:true
219 job when not NULL 219 job when not NULL
220 channel when not NULL 220 channel when not NULL
221 class when not NULL 221 class when not NULL
299 list<type> 299 list<type>
300 dict<type> 300 dict<type>
301 (a: type, b: type): type 301 (a: type, b: type): type
302 job 302 job
303 channel 303 channel
304 func
305 partial
304 306
305 Not supported yet: 307 Not supported yet:
306 tuple<a: type, b: type, ...> 308 tuple<a: type, b: type, ...>
307 309
308 These types can be used in declarations, but no variable will have this type: 310 These types can be used in declarations, but no variable will have this type: