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.

  1. productSearchResults :: GoogleCloudVisionV1p2beta1AnnotateImageResponse -> Maybe GoogleCloudVisionV1p2beta1ProductSearchResults

    gogol-vision Gogol.Vision.Types

    If present, product search has completed successfully.

  2. productSearchResults :: GoogleCloudVisionV1p3beta1AnnotateImageResponse -> Maybe GoogleCloudVisionV1p3beta1ProductSearchResults

    gogol-vision Gogol.Vision.Types

    If present, product search has completed successfully.

  3. productSearchResults :: GoogleCloudVisionV1p4beta1AnnotateImageResponse -> Maybe GoogleCloudVisionV1p4beta1ProductSearchResults

    gogol-vision Gogol.Vision.Types

    If present, product search has completed successfully.

  4. productSet :: GoogleCloudVisionV1p2beta1ProductSearchParams -> Maybe Text

    gogol-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.

  5. productId :: DeviceInfo -> ProductID

    hidapi System.HIDAPI

    No documentation available.

  6. productString :: DeviceInfo -> Maybe String

    hidapi System.HIDAPI

    No documentation available.

  7. biproduct :: (Bifoldable t, Num a) => t a a -> a

    base 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
    

  8. getProduct :: Product a -> a

    base Data.Monoid

    No documentation available.

  9. getProduct :: Product a -> a

    base Data.Semigroup

    No documentation available.

  10. 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')]
    

Page 114 of many | Previous | Next