Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/readoperator.jl @ 771:d0c1d0b4da52 operator_storage_array_of_table
Fix type in call to get_stencil_set
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 15 Jul 2021 00:19:27 +0200 |
parents | 7c87a33963c5 |
children | f6e56d5dbc17 |
comparison
equal
deleted
inserted
replaced
770:80d5717ad2f9 | 771:d0c1d0b4da52 |
---|---|
30 If more than one set matches the filters an error is raised. | 30 If more than one set matches the filters an error is raised. |
31 | 31 |
32 The stencil set is not parsed beyond the inital toml parse. To get usable | 32 The stencil set is not parsed beyond the inital toml parse. To get usable |
33 stencils use the `parse_stencil` functions on the fields of the stencil set. | 33 stencils use the `parse_stencil` functions on the fields of the stencil set. |
34 """ | 34 """ |
35 read_stencil_set(fn; filters...) = get_stencil_set(TOML.parsefile(fn), filters...) | 35 read_stencil_set(fn; filters...) = get_stencil_set(TOML.parsefile(fn); filters...) |
36 | 36 |
37 """ | 37 """ |
38 get_stencil_set(parsed_toml; filters...) | 38 get_stencil_set(parsed_toml; filters...) |
39 | 39 |
40 Same as `read_stencil_set` but works on already parsed TOML. | 40 Same as `read_stencil_set` but works on already parsed TOML. |