operator: remove-leading-category

    description:
        remove-leading-category |x>
        remove the leading category
            
    examples:
        -- if there is no category, then return unchanged:
        remove-leading-category |fish>
            |fish>
        
        remove-leading-category |animal: mammal: dog>
            |mammal: dog>
            
        remove-leading-category |a: b: c: d: e: f>
            |b: c: d: e: f>
        
    see also:
        find-leading-category, extract-category, extract-value    

Home