Home
last modified time | relevance | path

Searched defs:yes (Results 76 – 100 of 3768) sorted by relevance

12345678910>>...151

/dports/devel/hs-hlint/hlint-3.3.4/src/Hint/
H A DMonad.hs12 yes = do mapM print a; return b -- mapM_ print a function
13 yes = do _ <- mapM print a; return b -- mapM_ print a function
16 yes = do (bar+foo) -- function
18 yes = do bar; a <- foo; return a -- do bar; foo function
20 yes = do x <- bar; x -- do join bar function
22 yes = do x <- bar; return (f x) -- do f <$> bar function
23 yes = do x <- bar; return $ f x -- do f <$> bar function
24 yes = do x <- bar; pure $ f x -- do f <$> bar function
27 yes = do x <- bar $ baz; return (f $ g x) function
30 yes = do x <- return y; foo x -- @Suggestion let x = y function
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/hlint-3.2.7/src/Hint/
H A DMonad.hs12 yes = do mapM print a; return b -- mapM_ print a function
13 yes = do _ <- mapM print a; return b -- mapM_ print a function
16 yes = do (bar+foo) -- function
18 yes = do bar; a <- foo; return a -- do bar; foo function
20 yes = do x <- bar; x -- do join bar function
22 yes = do x <- bar; return (f x) -- do f <$> bar function
23 yes = do x <- bar; return $ f x -- do f <$> bar function
24 yes = do x <- bar; pure $ f x -- do f <$> bar function
27 yes = do x <- bar $ baz; return (f $ g x) function
30 yes = do x <- return y; foo x -- @Suggestion let x = y function
[all …]
/dports/math/dune-typetree/dune-typetree-cf6b5b4d3abe5dfa748815a69f6a8bda02af36f0/dune/typetree/
H A Dtypetraits.hh32 struct yes { char dummy[1]; }; struct
51 struct yes { char dummy[2]; }; struct
69 struct yes { char dummy[1]; }; struct
88 struct yes { char dummy[2]; }; struct
/dports/graphics/kolourpaint/kolourpaint-21.12.3/layers/selections/text/
H A DkpTextStyle.cpp154 void kpTextStyle::setBold (bool yes) in setBold()
167 void kpTextStyle::setItalic (bool yes) in setItalic()
180 void kpTextStyle::setUnderline (bool yes) in setUnderline()
193 void kpTextStyle::setStrikeThru (bool yes) in setStrikeThru()
232 void kpTextStyle::setBackgroundOpaque (bool yes) in setBackgroundOpaque()
245 void kpTextStyle::setBackgroundTransparent (bool yes) in setBackgroundTransparent()
/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/rdbms/
H A Dflexible_server_virtual_network.py28 …ame, vnet, subnet, location, delegation_service_name, vnet_address_pref, subnet_address_pref, yes): argument
75 …ient, server_name, location, delegation_service_name, vnet_address_pref, subnet_address_pref, yes): argument
95 def _create_and_verify_resource_group(resource_client, resource_group, location, yes): argument
102 …group, vnet_name, subnet_name, location, server_name, vnet_address_pref, subnet_address_pref, yes): argument
130 …ice_name, resource_group, vnet_name, subnet_name, location, server_name, subnet_address_pref, yes): argument
172 …context, database_engine, resource_group, server_name, private_dns_zone, subnet_id, location, yes): argument
272 def prepare_public_network(public_access, yes): argument
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/apply-refact-0.9.3.0/tests/examples/
H A DTest17.hs1 yes = 1 * 2+3 function
H A DTest2.hs2 yes = Prelude2.readFile "foo" >>= putStr function
H A DList2.hs1 yes (1:2:[]) = 1 function
H A DList8.hs1 yes = [if a then b else c] ++ xs function
H A DList9.hs1 yes = [1] : [2] : [3] : [4] : [5] : [] function
H A DMonad16.hs1 yes = do case a of {_ -> forM x y; x:xs -> forM x xs}; return () function
H A DBracket0.hs1 yes = (f x) x function
H A DBracket10.hs1 yes = [(foo bar)] function
H A DBracket11.hs1 yes = foo ((x y), z) function
H A DBracket2.hs1 yes = (foo) function
H A DBracket25.hs1 yes = split "to" $ names function
H A DBracket27.hs1 yes = operator foo $ operator function
H A DBracket29.hs1 yes = return $ Record{a=b} function
H A DBracket30.hs1 yes = (b $ c d) ++ e function
H A DBracket5.hs1 yes = foo ((x x)) function
H A DBracket7.hs1 yes = if (f x) then y else z function
H A DBracket8.hs1 yes = if x then (f y) else z function
H A DDefault10.hs1 yes = not (a /= b) function
H A DDefault118.hs2 yes = flip mapM function
H A DDefault15.hs1 yes = if b < 42 then [a] else [] function

12345678910>>...151