Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
gogol-vision Gogol.Vision.Types If present, product search has completed successfully.
-
gogol-vision Gogol.Vision.Types If present, product search has completed successfully.
-
gogol-vision Gogol.Vision.Types If present, product search has completed successfully.
productSet :: GoogleCloudVisionV1p2beta1ProductSearchParams -> Maybe Textgogol-vision Gogol.Vision.Types The resource name of a ProductSet to be searched for similar images. Format is: projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID.
productId :: DeviceInfo -> ProductIDhidapi System.HIDAPI No documentation available.
productString :: DeviceInfo -> Maybe Stringhidapi System.HIDAPI No documentation available.
biproduct :: (Bifoldable t, Num a) => t a a -> abase Data.Bifoldable The biproduct function computes the product of the numbers of a structure.
Examples
Basic usage:>>> biproduct (42, 17) 714
>>> biproduct (Right 42) 42
>>> biproduct (BiList [13, 29, 4] [18, 1, 7]) 190008
>>> biproduct (BiList [13, 29, 4] []) 1508
>>> biproduct (BiList [] []) 1
-
base Data.Monoid No documentation available.
-
base Data.Semigroup No documentation available.
cartesianProduct :: Set a -> Set b -> Set (a, b)containers Data.Set Calculate the Cartesian product of two sets.
cartesianProduct xs ys = fromList $ liftA2 (,) (toList xs) (toList ys)
Example:cartesianProduct (fromList [1,2]) (fromList ['a','b']) = fromList [(1,'a'), (1,'b'), (2,'a'), (2,'b')]