QuickLookableBinaryTree

public protocol QuickLookableBinaryTree: BinaryTree, CustomPlaygroundQuickLookable

A binary tree that can be visualized in a Playground / Xcode debugger

  • quickLookView Default implementation

    Undocumented

    Default Implementation

    Configures visual tree representation

    Declaration

    Swift

    public protocol QuickLookableBinaryTree: BinaryTree, CustomPlaygroundQuickLookable
  • customPlaygroundQuickLook Extension method

    Playground quick look

    Declaration

    Swift

    public var customPlaygroundQuickLook: PlaygroundQuickLook
  • debugQuickLookObject() Extension method

    Xcode debugger visualization

    Declaration

    Swift

    public func debugQuickLookObject() -> Any?
  • quickLookImage Extension method

    Visualization as an image

    Declaration

    Swift

    public var quickLookImage: UIImage?