This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ghci> let manyThen x end = choice [(:) <$> x <*> manyThen x end, const [] <$> end] | |
ghci> parseOnly (manyThen anyChar (char ':')) (pack "he:llo:") | |
Right "he:llo" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cbrm <- function(formula, | |
data, | |
family = gaussian(), | |
prior = NULL, | |
autocor = NULL, | |
cov_ranef = NULL, | |
sample_prior = c("no", "yes", "only"), | |
sparse = FALSE, | |
knots = NULL, | |
stan_funs = NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table inet filter { | |
chain inbound { | |
type filter hook input priority 0 | |
policy drop | |
ct state invalid counter drop | |
ct state { established, related } counter accept | |
ip protocol icmp counter accept | |
ip6 nexthdr ipv6-icmp counter accept |
OlderNewer